POST api/v1/Orders/SetTransportOnOrders
Request Information
URI Parameters
None.
Body Parameters
TransportOnOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| Store | integer |
Required |
|
| DocNumber | string |
None. |
|
| DocId | string |
None. |
|
| ArriveDate | string |
String length: inclusive between 0 and 50 |
|
| Driver | string |
String length: inclusive between 0 and 250 |
|
| DriverLicense | string |
String length: inclusive between 0 and 250 |
|
| Phone | string |
String length: inclusive between 0 and 50 |
|
| TruckNum | string |
String length: inclusive between 0 and 50 |
|
| TruckType | string |
String length: inclusive between 0 and 50 |
|
| TruckModel | string |
String length: inclusive between 0 and 50 |
|
| TruckTrailerNum | string |
String length: inclusive between 0 and 50 |
|
| Description | string |
String length: inclusive between 0 and 50 |
Request Formats
application/json, text/json
Sample:
{
"Store": 1,
"DocNumber": "sample string 1",
"DocId": "sample string 2",
"ArriveDate": "sample string 3",
"Driver": "sample string 4",
"DriverLicense": "sample string 5",
"Phone": "sample string 6",
"TruckNum": "sample string 7",
"TruckType": "sample string 8",
"TruckModel": "sample string 9",
"TruckTrailerNum": "sample string 10",
"Description": "sample string 11"
}
application/xml, text/xml
Sample:
<TransportOnOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FreshLogicAPI.Models"> <ArriveDate>sample string 3</ArriveDate> <Description>sample string 11</Description> <DocId>sample string 2</DocId> <DocNumber>sample string 1</DocNumber> <Driver>sample string 4</Driver> <DriverLicense>sample string 5</DriverLicense> <Phone>sample string 6</Phone> <Store>1</Store> <TruckModel>sample string 9</TruckModel> <TruckNum>sample string 7</TruckNum> <TruckTrailerNum>sample string 10</TruckTrailerNum> <TruckType>sample string 8</TruckType> </TransportOnOrder>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.