POST api/DeliveryStatus
Request Information
URI Parameters
None.
Body Parameters
DeliveryStatusImportBO| Name | Description | Type | Additional information |
|---|---|---|---|
| EmpCode | string |
None. |
|
| SecurityCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmpCode": "sample string 1",
"SecurityCode": "sample string 2"
}
application/xml, text/xml
Sample:
<DeliveryStatusImportBO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tbs.webapi.Courier.Controllers"> <SecurityCode xmlns="http://schemas.datacontract.org/2004/07/ocskuwait.Code">sample string 2</SecurityCode> <EmpCode>sample string 1</EmpCode> </DeliveryStatusImportBO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DeliveryStatusBO| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalRequiredDelivery | integer |
None. |
|
| Pending | integer |
None. |
|
| Delivery | integer |
None. |
|
| NonDelivery | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalRequiredDelivery": 1,
"Pending": 2,
"Delivery": 3,
"NonDelivery": 4
}
application/xml, text/xml
Sample:
<APITrackingLibrary.DeliveryStatusBO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ocskuwait.Code"> <Delivery>3</Delivery> <NonDelivery>4</NonDelivery> <Pending>2</Pending> <TotalRequiredDelivery>1</TotalRequiredDelivery> </APITrackingLibrary.DeliveryStatusBO>