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