GET api/SmartRegistry/Reports/eDelivery/{trackingNumber}/DistributionApproval/{recipientMERSOrgId}/{clientId}
Gets the list of distribution approval results based on the tracking number.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
trackingNumber |
The tracking number. |
string |
Required |
recipientMERSOrgId |
The recipient MERS organization identifier. |
string |
Required |
clientId |
The client identifier. |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
List of distribution approval results.
Collection of ESignSystems.SmartSAFE.Models.SmartRegistry.DistributionApprovalDetailName | Description | Type | Additional information |
---|---|---|---|
Code |
Gets or sets the code. |
string |
None. |
Description |
Gets or sets the description. |
string |
None. |
MIN |
Gets or sets the MIN. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Code": "sample string 1", "Description": "sample string 2", "MIN": "sample string 3" }, { "Code": "sample string 1", "Description": "sample string 2", "MIN": "sample string 3" } ]
application/xml, text/xml
Sample:
<ArrayOfDistributionApprovalDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry"> <DistributionApprovalDetail> <Code>sample string 1</Code> <Description>sample string 2</Description> <MIN>sample string 3</MIN> </DistributionApprovalDetail> <DistributionApprovalDetail> <Code>sample string 1</Code> <Description>sample string 2</Description> <MIN>sample string 3</MIN> </DistributionApprovalDetail> </ArrayOfDistributionApprovalDetail>