POST api/transports/get-cancelled-document-ids
Request Information
URI Parameters
None.
Body Parameters
TransportsGetCancelledDocumentIdsReq| Name | Description | Type | Additional information |
|---|---|---|---|
| idService | string |
Required |
|
| mobileId | string |
Required |
Request Formats
application/json, text/json
Sample:
{
"idService": "sample string 1",
"mobileId": "sample string 2"
}
application/xml, text/xml
Sample:
<TransportsGetCancelledDocumentIdsReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiMobile4Tracking.Models"> <MobileId>sample string 2</MobileId> <IdService>sample string 1</IdService> </TransportsGetCancelledDocumentIdsReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TransportsGetCancelledDocumentIdsResp| Name | Description | Type | Additional information |
|---|---|---|---|
| travelDocumentIds | Collection of integer |
Required |
Response Formats
application/json, text/json
Sample:
{
"travelDocumentIds": [
1,
2
]
}
application/xml, text/xml
Sample:
<TransportsGetCancelledDocumentIdsResp xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiMobile4Tracking.Models">
<TravelDocumentIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:long>1</d2p1:long>
<d2p1:long>2</d2p1:long>
</TravelDocumentIds>
</TransportsGetCancelledDocumentIdsResp>