GET api/SmartRegistry/Reports/eDelivery/{trackingNumber}/Documents/{clientId}
Gets the list of eDelivery documents based on tracking number.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
trackingNumber |
The tracking number. |
string |
Required |
clientId |
The client id. |
integer |
None. |
Body Parameters
None.
Response Information
Resource Description
List of eDelivery Documents.
Collection of ESignSystems.SmartSAFE.Models.SmartRegistry.EDeliveryDocumentName | Description | Type | Additional information |
---|---|---|---|
MIN |
Gets or sets the MIN. |
string |
None. |
DocumentName |
Gets or sets the document name. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "MIN": "sample string 1", "DocumentName": "sample string 2" }, { "MIN": "sample string 1", "DocumentName": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfEDeliveryDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SmartRegistry"> <EDeliveryDocument> <DocumentName>sample string 2</DocumentName> <MIN>sample string 1</MIN> </EDeliveryDocument> <EDeliveryDocument> <DocumentName>sample string 2</DocumentName> <MIN>sample string 1</MIN> </EDeliveryDocument> </ArrayOfEDeliveryDocument>