Vehicles
Fleet vehicles. Auth:X-API-Key header. Base: https://api.vh3connect.io/api:YdihQNr3.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Fleet vehicles
X-API-Key header. Base: https://api.vh3connect.io/api:YdihQNr3.
| Param | Type | Description |
|---|---|---|
pageNumber | integer | Page index (1-based) |
pageSize | integer | Items per page (default 100, max 1000) |
sortBy | string | Sort field (endpoint-specific) |
direction | enum | ascending or descending |
GET /vehicles/vehicle_getcurl -G "https://api.vh3connect.io/api:YdihQNr3/vehicles/vehicle_get" \
-H "X-API-Key: your-api-key" \
--data-urlencode "vehicleId=50"
POST /vehicles/createcurl -X POST "https://api.vh3connect.io/api:YdihQNr3/vehicles/create" \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"registration": "AB12 CDE"
}'
POST /vehicles/updatecurl -X POST "https://api.vh3connect.io/api:YdihQNr3/vehicles/update" \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"vehicleId": 50
}'
POST /vehicles/listcurl -X POST "https://api.vh3connect.io/api:YdihQNr3/vehicles/list" \
-H "X-API-Key: your-api-key" \
-H "Content-Type: application/json" \
-d '{
"pageNumber": 1,
"pageSize": 50
}'
Was this page helpful?
Suggestions