Vehicle Groups
Get Vehicle Groups
Responses
- 200
- 400
- 401
Success
application/json
Schema
Example (from schema)
Example
Schema
- Array [
- ]
message string required
data object[]
vehicleGroupName string required
vehicleGroupId number required
vehicleIds number[] required
{
"message": "string",
"data": [
{
"vehicleGroupName": "string",
"vehicleGroupId": 0
}
]
}
{
"message": "Success",
"data": [
{
"vehicleGroupName": "Vehicle Group 1",
"vehicleGroupId": 1,
"vehicleIds": [
1,
2,
3
]
}
]
}
Bad Request
application/json
Schema
Example (from schema)
Expired Token
Bad Token
Schema
code string
message string
detail string
{
"code": "string",
"message": "string",
"detail": "string"
}
{
"code": "E-V1/1-03",
"message": "An error occurred while executing query",
"detail": "Context creation failed: jwt expired"
}
{
"code": "E-V1/1-03",
"message": "An error occurred while executing query",
"detail": "Context creation failed: jwt malformed"
}
Unauthorized Request
application/json
Schema
Example (from schema)
Example
Schema
code string
message string
{
"code": "string",
"message": "string"
}
{
"code": "E-G1/1-01",
"message": "Authentication token is required"
}
Loading...