curl --request GET \
--url https://api.volteras.com/v1/vehicles/{vehicle_id}/alerts \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": "<string>",
"status": "ACTIVE",
"alertDefinitionId": "<string>",
"vehicleId": "<string>",
"muted": true,
"createdAt": "2023-11-07T05:31:56Z",
"currentSeverity": "LOW",
"resolutions": [
{
"id": "<string>",
"definition": {
"id": "<string>",
"name": "<string>",
"description": "<string>"
},
"status": "PENDING",
"steps": [
{
"id": "<string>",
"status": "PENDING",
"definition": {
"id": "<string>",
"description": "<string>",
"order": 123
}
}
]
}
],
"definition": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"message": "<string>",
"category": {
"id": "<string>",
"name": "<string>",
"description": "<string>"
}
},
"metadata": {
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"vin": "<string>"
}
],
"nextPageToken": "<string>",
"totalResults": 123
}Retrieve alerts for a vehicle based on its unique ID.
curl --request GET \
--url https://api.volteras.com/v1/vehicles/{vehicle_id}/alerts \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": "<string>",
"status": "ACTIVE",
"alertDefinitionId": "<string>",
"vehicleId": "<string>",
"muted": true,
"createdAt": "2023-11-07T05:31:56Z",
"currentSeverity": "LOW",
"resolutions": [
{
"id": "<string>",
"definition": {
"id": "<string>",
"name": "<string>",
"description": "<string>"
},
"status": "PENDING",
"steps": [
{
"id": "<string>",
"status": "PENDING",
"definition": {
"id": "<string>",
"description": "<string>",
"order": 123
}
}
]
}
],
"definition": {
"id": "<string>",
"name": "<string>",
"description": "<string>",
"message": "<string>",
"category": {
"id": "<string>",
"name": "<string>",
"description": "<string>"
}
},
"metadata": {
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"vin": "<string>"
}
],
"nextPageToken": "<string>",
"totalResults": 123
}The access token received from the authorization server in the OAuth 2.0 flow.
Unique internal identifier for the vehicle.
Max size of the returned list.
Page token used for pagination.
Listing filter schema.
Successful Response
Returned data from the listing query.
Show child attributes
ACTIVE, RESOLVED LOW, MEDIUM, HIGH, CRITICAL Show child attributes
PENDING, COMPLETED Show child attributes
PENDING, COMPLETED Show child attributes
Next page token used for pagination.
Total result count.