POST api/Driver/UpdateStatus
Request Information
URI Parameters
None.
Body Parameters
DriverUpdateStatusModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Lang | integer |
None. |
|
| DriverID | integer |
None. |
|
| DriverStatus | integer |
None. |
|
| CurrentLocation | string |
None. |
|
| ShippingLineID | integer |
None. |
|
| HaveContainers | boolean |
None. |
|
| ContainerType | integer |
None. |
|
| ContainerStatus | integer |
None. |
|
| EndDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Lang": 1,
"DriverID": 1,
"DriverStatus": 2,
"CurrentLocation": "sample string 3",
"ShippingLineID": 1,
"HaveContainers": true,
"ContainerType": 1,
"ContainerStatus": 1,
"EndDate": "2025-12-05T19:40:27.3823561-08:00"
}
application/xml, text/xml
Sample:
<DriverUpdateStatusModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models"> <ContainerStatus>1</ContainerStatus> <ContainerType>1</ContainerType> <CurrentLocation>sample string 3</CurrentLocation> <DriverID>1</DriverID> <DriverStatus>2</DriverStatus> <EndDate>2025-12-05T19:40:27.3823561-08:00</EndDate> <HaveContainers>true</HaveContainers> <Lang>1</Lang> <ShippingLineID>1</ShippingLineID> </DriverUpdateStatusModel>
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.