POST api/ValetSupervisor/CreateEntry

Request Information

URI Parameters

None.

Body Parameters

CreateEntryReq
NameDescriptionTypeAdditional information
valetParkingId

integer

None.

locationId

integer

None.

valetVehicleTypeId

integer

None.

vehicleNo

string

None.

customerMobile

string

None.

createdBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "valetParkingId": 1,
  "locationId": 1,
  "valetVehicleTypeId": 2,
  "vehicleNo": "sample string 3",
  "customerMobile": "sample string 4",
  "createdBy": 5
}

application/xml, text/xml

Sample:
<ValetSupervisorController.CreateEntryReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaiParkAPI.Controllers">
  <createdBy>5</createdBy>
  <customerMobile>sample string 4</customerMobile>
  <locationId>1</locationId>
  <valetParkingId>1</valetParkingId>
  <valetVehicleTypeId>2</valetVehicleTypeId>
  <vehicleNo>sample string 3</vehicleNo>
</ValetSupervisorController.CreateEntryReq>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional 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>