- Introdução a API
- Rotas
- Introdução a API Trackings
- Endpoints
- others
- reports
- bounds
- driver
- migration
- last-tracking
- planned-route
- new-planned-route
- vehicles
- trackings
- tracker
- Abastecimentos
- Multas
- Manutenção
- others
- Maintenance
- Planning Plan
- Maintenance Dashboard
- Mapa
- Ultimos Pontos (Last Points)
- lastbreakroutepoint
- Checklist
bound vehicle with imei
POST
https://cgv-prd-trackings-api.contele.io/api/v1/bound-vehicle
bounds
Última modificação:2024-11-19 20:38:26
Requisição
Parâmetros Header
x-api-key
string
requerido
Padrão:
{{api_key}}
Parâmetros Bodyapplication/json
bounds_vehicles
array[object (bound_vehicle) {4}]
requerido
vehicle_id
integer
requerido
imei
string
requerido
start_bound_date
string
requerido
created_by
string
requerido
Exemplo
{
"bounds_vehicles": [
{
"vehicle_id": 0,
"imei": "string",
"start_bound_date": "string",
"created_by": "string"
}
]
}
Exemplos de Requisição
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://cgv-prd-trackings-api.contele.io/api/v1/bound-vehicle' \
--header 'x-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"bounds_vehicles": [
{
"vehicle_id": 0,
"imei": "string",
"start_bound_date": "string",
"created_by": "string"
}
]
}'
Respostas
🟢201Criado
application/json
Body
object {0}
Exemplo
{}
Modificado em 2024-11-19 20:38:26