GET Pudo/CourierScan_PUDO?pudoID={pudoID}&trackingNo={trackingNo}&employeeID={employeeID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pudoID | integer |
Required |
|
| trackingNo | string |
Required |
|
| employeeID | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | boolean |
None. |
|
| Data | Object |
None. |
|
| Message | string |
None. |
|
| InnerMessage | string |
None. |
|
| ExtraData | Dictionary of string [key] and Object [value] |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": true,
"Data": {},
"Message": "sample string 3",
"InnerMessage": "sample string 4",
"ExtraData": {
"sample string 1": {},
"sample string 3": {}
}
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TMSWebAPIBL.Models">
<Data />
<ExtraData xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:KeyValueOfstringanyType>
<d2p1:Key>sample string 1</d2p1:Key>
<d2p1:Value />
</d2p1:KeyValueOfstringanyType>
<d2p1:KeyValueOfstringanyType>
<d2p1:Key>sample string 3</d2p1:Key>
<d2p1:Value />
</d2p1:KeyValueOfstringanyType>
</ExtraData>
<InnerMessage>sample string 4</InnerMessage>
<Message>sample string 3</Message>
<Result>true</Result>
</Response>