Authentication
Vehicles
Drivers
Devices
Groups
Data Management
Providers
Webhook Events
- Event Types
- connection.created
- connection.disconnected
- connection.reconnected
- connection.completed
- connection.updated
- sync.requested
- sync.started
- sync.completed
- sync.failed
- connection.first_sync_completed
- issue.reported
- issue.resolved
- unsupported_provider.requested
- vehicle.added
- vehicle.modified
- vehicle.removed
- driver.added
- driver.modified
- driver.removed
- safety_event.added
- safety_event.modified
Issues
Resolve Issue
Mark an issue’s status as resolved
until the issue is observed again.
POST
/
issues
/
{issueId}
/
resolve
curl --request POST \
--url https://api.withterminal.com/tsp/v1/issues/{issueId}/resolve \
--header 'Authorization: Bearer <token>'
{
"id": "isu_01D8ZQFGHVJ858NBF2Q7DV9MNC",
"connection": "conn_01GV12VR4DJP70GD1ZBK0SDWFH",
"status": "ongoing",
"error": {
"code": "missing_permissions",
"message": "Failed to ingest HOS Logs, missing permissions to access Duty Status Logs"
},
"firstReportedAt": "2021-01-06T03:24:53.000Z",
"lastReportedAt": "2021-01-06T03:24:53.000Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://api.withterminal.com/tsp/v1/issues/{issueId}/resolve \
--header 'Authorization: Bearer <token>'
{
"id": "isu_01D8ZQFGHVJ858NBF2Q7DV9MNC",
"connection": "conn_01GV12VR4DJP70GD1ZBK0SDWFH",
"status": "ongoing",
"error": {
"code": "missing_permissions",
"message": "Failed to ingest HOS Logs, missing permissions to access Duty Status Logs"
},
"firstReportedAt": "2021-01-06T03:24:53.000Z",
"lastReportedAt": "2021-01-06T03:24:53.000Z"
}
Assistant
Responses are generated using AI and may contain mistakes.