POST api/Webhook/Dotpe_callbackresponse
Request Information
URI Parameters
None.
Body Parameters
Dotpe_Response| Name | Description | Type | Additional information |
|---|---|---|---|
| orderID | integer |
None. |
|
| clientOrderID | string |
None. |
|
| status | string |
None. |
|
| riderName | string |
None. |
|
| riderPhone | string |
None. |
|
| pickupETA | integer |
None. |
|
| dropETA | integer |
None. |
|
| trackURL | string |
None. |
|
| deliveryPartner | string |
None. |
|
| message | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"orderID": 1,
"clientOrderID": "sample string 2",
"status": "sample string 3",
"riderName": "sample string 4",
"riderPhone": "sample string 5",
"pickupETA": 6,
"dropETA": 7,
"trackURL": "sample string 8",
"deliveryPartner": "sample string 9",
"message": "sample string 10"
}
application/xml, text/xml
Sample:
<Dotpe_Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.Webhook"> <clientOrderID>sample string 2</clientOrderID> <deliveryPartner>sample string 9</deliveryPartner> <dropETA>7</dropETA> <message>sample string 10</message> <orderID>1</orderID> <pickupETA>6</pickupETA> <riderName>sample string 4</riderName> <riderPhone>sample string 5</riderPhone> <status>sample string 3</status> <trackURL>sample string 8</trackURL> </Dotpe_Response>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |