POST api/ExpressPODImageAPI
Request Information
URI Parameters
None.
Body Parameters
PODImageUpdateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TrackingCode | string |
None. |
|
| UserID | string |
None. |
|
| Password | string |
None. |
|
| ImageBase64 | string |
None. |
|
| ExpressAgentID | string |
None. |
|
| REC_ID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"TrackingCode": "sample string 1",
"UserID": "sample string 2",
"Password": "sample string 3",
"ImageBase64": "sample string 4",
"ExpressAgentID": "sample string 5",
"REC_ID": 6
}
application/xml, text/xml
Sample:
<PODImageUpdateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSExpressWeb.Models"> <ExpressAgentID>sample string 5</ExpressAgentID> <ImageBase64>sample string 4</ImageBase64> <Password>sample string 3</Password> <REC_ID>6</REC_ID> <TrackingCode>sample string 1</TrackingCode> <UserID>sample string 2</UserID> </PODImageUpdateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APIResponseBase| Name | Description | Type | Additional information |
|---|---|---|---|
| status | string |
None. |
|
| message | string |
None. |
|
| data |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": "sample string 1",
"message": "sample string 2",
"data": {}
}
application/xml, text/xml
Sample:
<APIResponseBase xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FMSExpressWeb.Common"> <data /> <message>sample string 2</message> <status>sample string 1</status> </APIResponseBase>