POST api/ReservationOfCustomersDetail
Request Information
URI Parameters
None.
Body Parameters
ReservationsOfCustomerRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| resAdNo | integer |
None. |
|
| resNo | integer |
None. |
|
| resCorpNo | integer |
None. |
|
| language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"resAdNoField": 1,
"resNoField": 2,
"resCorpNoField": 3,
"languageField": "sample string 4"
}
application/xml, text/xml
Sample:
<ReservationsOfCustomerRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RentACarService.JupicarService"> <languageField>sample string 4</languageField> <resAdNoField>1</resAdNoField> <resCorpNoField>3</resCorpNoField> <resNoField>2</resNoField> </ReservationsOfCustomerRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ServiceResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| StatusCode | integer |
None. |
|
| StatusMessage | string |
None. |
|
| ErrorType | string |
None. |
|
| ObjectList | Object |
None. |
|
| ObjectList2 | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"StatusCode": 1,
"StatusMessage": "sample string 2",
"ErrorType": "sample string 3",
"ObjectList": {},
"ObjectList2": {}
}
application/xml, text/xml
Sample:
<ServiceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RentACarService.Models"> <ErrorType>sample string 3</ErrorType> <ObjectList /> <ObjectList2 /> <StatusCode>1</StatusCode> <StatusMessage>sample string 2</StatusMessage> </ServiceResponse>