GET api/vehicletype

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of vehicletype
NameDescriptionTypeAdditional information
id

integer

None.

vehicletypename

string

None.

createdon

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "vehicletypename": "sample string 2",
    "createdon": "2024-04-19T22:25:53.5064955+05:30"
  },
  {
    "id": 1,
    "vehicletypename": "sample string 2",
    "createdon": "2024-04-19T22:25:53.5064955+05:30"
  }
]

application/xml, text/xml

Sample:
<ArrayOfvehicletype xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WBBedAvailibility">
  <vehicletype>
    <createdon>2024-04-19T22:25:53.5064955+05:30</createdon>
    <id>1</id>
    <vehicletypename>sample string 2</vehicletypename>
  </vehicletype>
  <vehicletype>
    <createdon>2024-04-19T22:25:53.5064955+05:30</createdon>
    <id>1</id>
    <vehicletypename>sample string 2</vehicletypename>
  </vehicletype>
</ArrayOfvehicletype>