POST api/ValetSupervisor/MarkParked
Request Information
URI Parameters
None.
Body Parameters
MarkParkedReq| Name | Description | Type | Additional information |
|---|---|---|---|
| entryId | integer |
None. |
|
| parkingPoint | string |
None. |
|
| lat | string |
None. |
|
| lng | string |
None. |
|
| userId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"entryId": 1,
"parkingPoint": "sample string 2",
"lat": "sample string 3",
"lng": "sample string 4",
"userId": 5
}
application/xml, text/xml
Sample:
<ValetSupervisorController.MarkParkedReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaiParkAPI.Controllers"> <entryId>1</entryId> <lat>sample string 3</lat> <lng>sample string 4</lng> <parkingPoint>sample string 2</parkingPoint> <userId>5</userId> </ValetSupervisorController.MarkParkedReq>
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>