CarApi Resource

GET /api/v1/car

Request Parameters
name type description constraints
filter_withHidden query boolean
limit query int
startIndex query int
userid query  
Response Body
media type data type description
application/json CarEntryList (JSON)
application/xml;charset=UTF-8 object

Example

Request
GET /api/v1/car
Content-Type: */*
Accept: application/json

                
...
                
              
Response
HTTP/1.1 200 OK
Content-Type: application/json

                
{
  "entries" : [ {
    "description" : "...",
    "numberPlate" : "...",
    "id" : 12345
  }, {
    "description" : "...",
    "numberPlate" : "...",
    "id" : 12345
  } ],
  "rowCount" : 12345
}