POST CarRental/CarType

Request Information

URI Parameters

None.

Body Parameters

CarRentalCarTypeRequest
NameDescriptionTypeAdditional information
locationID

string

None.

userID

user API

string

None.

accessToken

access code getting from login

string

None.

Request Formats

application/json, text/json

Sample:
{
  "locationID": "sample string 1",
  "userID": "sample string 2",
  "accessToken": "sample string 3"
}

application/xml, text/xml

Sample:
<CarRentalCarTypeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cebes.DI.H2H.Api.Models">
  <accessToken>sample string 3</accessToken>
  <userID>sample string 2</userID>
  <locationID>sample string 1</locationID>
</CarRentalCarTypeRequest>

Response Information

Resource Description

CarRentalCarTypeResponse
NameDescriptionTypeAdditional information
carTypes

Collection of CarTypeModel

None.

respTime

describe time in sending response

date

None.

userID

user ID to access API

string

None.

accessToken

access token that needed to access API

string

None.

status

SUCCESS or FAILED

string

None.

respMessage

detail message of response status

string

None.

Response Formats

application/json, text/json

Sample:
{
  "carTypes": [
    {
      "carName": "sample string 1",
      "carMerk": "sample string 2",
      "carTypeName": "sample string 3"
    },
    {
      "carName": "sample string 1",
      "carMerk": "sample string 2",
      "carTypeName": "sample string 3"
    }
  ],
  "respTime": "2025-01-22T23:57:35.8270775+07:00",
  "userID": "sample string 2",
  "accessToken": "sample string 3",
  "status": "sample string 4",
  "respMessage": "sample string 5"
}

application/xml, text/xml

Sample:
<CarRentalCarTypeResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cebes.DI.H2H.Api.Models">
  <accessToken>sample string 3</accessToken>
  <respMessage>sample string 5</respMessage>
  <respTime>2025-01-22T23:57:35.8270775+07:00</respTime>
  <status>sample string 4</status>
  <userID>sample string 2</userID>
  <carTypes>
    <CarTypeModel>
      <carMerk>sample string 2</carMerk>
      <carName>sample string 1</carName>
      <carTypeName>sample string 3</carTypeName>
    </CarTypeModel>
    <CarTypeModel>
      <carMerk>sample string 2</carMerk>
      <carName>sample string 1</carName>
      <carTypeName>sample string 3</carTypeName>
    </CarTypeModel>
  </carTypes>
</CarRentalCarTypeResponse>