POST api/ValetSupervisor/CreateGetMyCar

Request Information

URI Parameters

None.

Body Parameters

GetMyCarCreateReq
NameDescriptionTypeAdditional information
entryId

integer

None.

paymentChoice

string

None.

requestedBy

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "entryId": 1,
  "paymentChoice": "sample string 2",
  "requestedBy": 3
}

application/xml, text/xml

Sample:
<ValetSupervisorController.GetMyCarCreateReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SaiParkAPI.Controllers">
  <entryId>1</entryId>
  <paymentChoice>sample string 2</paymentChoice>
  <requestedBy>3</requestedBy>
</ValetSupervisorController.GetMyCarCreateReq>

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>