POST api/CheckCall?poNumber={poNumber}&loadSplitNumber={loadSplitNumber}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| poNumber | integer |
Required |
|
| loadSplitNumber | integer |
Required |
Body Parameters
CheckCallInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| PONumber | integer |
None. |
|
| LoadSplitNumber | integer |
None. |
|
| Status | string |
None. |
|
| City | string |
None. |
|
| State | string |
None. |
|
| Zip | string |
None. |
|
| Temp | string |
None. |
|
| LoadID | integer |
None. |
|
| Pick_DropID | integer |
None. |
|
| PickOrDrop | string |
None. |
|
| Speed | integer |
None. |
|
| Latitude | decimal number |
None. |
|
| Longitude | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"PONumber": 1,
"LoadSplitNumber": 2,
"Status": "sample string 3",
"City": "sample string 4",
"State": "sample string 5",
"Zip": "sample string 6",
"Temp": "sample string 7",
"LoadID": 8,
"Pick_DropID": 1,
"PickOrDrop": "sample string 9",
"Speed": 1,
"Latitude": 1.0,
"Longitude": 1.0
}
application/xml, text/xml
Sample:
<CheckCallInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ViaTMSRestApi.Controllers"> <City>sample string 4</City> <Latitude>1</Latitude> <LoadID>8</LoadID> <LoadSplitNumber>2</LoadSplitNumber> <Longitude>1</Longitude> <PONumber>1</PONumber> <PickOrDrop>sample string 9</PickOrDrop> <Pick_DropID>1</Pick_DropID> <Speed>1</Speed> <State>sample string 5</State> <Status>sample string 3</Status> <Temp>sample string 7</Temp> <Zip>sample string 6</Zip> </CheckCallInfo>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>