POST api/ValetSupervisor/AssignDriver
Request Information
URI Parameters
None.
Body Parameters
AssignDriverReq| Name | Description | Type | Additional information |
|---|---|---|---|
| entryId | integer |
None. |
|
| driverId | integer |
None. |
|
| docketNo | string |
None. |
|
| parkingPoint | string |
None. |
|
| userId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"entryId": 1,
"driverId": 2,
"docketNo": "sample string 3",
"parkingPoint": "sample string 4",
"userId": 5
}
application/xml, text/xml
Sample:
<ValetSupervisorController.AssignDriverReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaiParkAPI.Controllers"> <docketNo>sample string 3</docketNo> <driverId>2</driverId> <entryId>1</entryId> <parkingPoint>sample string 4</parkingPoint> <userId>5</userId> </ValetSupervisorController.AssignDriverReq>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| data | DataTable |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 1,
"Message": "sample string 2",
"data": null
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaiParkAPI.Models"> <Message>sample string 2</Message> <Status>1</Status> <data i:nil="true" /> </Response>