List connections
Connections
List connections
Get all vehicle connections for the application, with optional filters for user ID, vehicle ID, and mode. Results are paginated.
GET
List connections
Documentation Index
Fetch the complete documentation index at: https://smartcar.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
The Authorization header must be provided with a valid bearer token.
Example: Authorization: Bearer {token}
Query Parameters
Filter by user id in relationships
Filter by vehicle id in relationships
Filter by mode (live or simulated)
Available options:
live, simulated Page number for pagination (default is 1)
Number of items per page for pagination (default is 10)
Response
Get all vehicle connections for the application
Example:
{
"pageNumber": 1,
"pageSize": 10,
"totalCount": 50,
"orderBy": "createdAt",
"orderDirection": "DESC"
}Example:
{
"self": "/connections?page[number]=1&page[size]=10",
"first": "/connections?page[number]=1&page[size]=10",
"prev": null,
"next": "/connections?page[number]=2&page[size]=10",
"last": "/connections?page[number]=5&page[size]=10"
}
