POST api/ValetSupervisor/CustomerGetMyCar

Request Information

URI Parameters

None.

Body Parameters

CustomerGetMyCarReq
NameDescriptionTypeAdditional information
sessionKey

string

None.

paymentChoice

string

None.

Request Formats

application/json, text/json

Sample:
{
  "sessionKey": "sample string 1",
  "paymentChoice": "sample string 2"
}

application/xml, text/xml

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

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>