- Introdução a API
- Rotas
- Abastecimentos
- Multas
- Manutenção
- others
- Maintenance
- Planning Plan
- Maintenance Dashboard
- Mapa
- Ultimos Pontos (Last Points)
- lastbreakroutepoint
create fuels
POST
https://cgv-prd-fuels-api.contele.io/api/v1/fuels
fuels
Last modified:2024-12-04 18:44:42
Requisição
Parâmetros Header
x-api-key
string
requerido
Padrão:
{{api_key}}
Parâmetros Bodyapplication/json
fuels
array[object (fuel_without_id) {15}]
opcional
vehicle_id
number
opcional
fuel_date
string
opcional
odometer
number
opcional
fuel_type_id
number
opcional
liters
number
opcional
lat
number
opcional
lng
number
opcional
total_value
number
opcional
liter_value
number
opcional
fully_filled
number
opcional
status
number
opcional
driver_id
number
opcional
organization_id
number
opcional
user_id
number
opcional
fuel_observation
string
opcional
Exemplo
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-fuels-api.contele.io/api/v1/fuels' \
--header 'x-api-key;' \
--header 'Content-Type: application/json' \
--data-raw ''
Respostas
🟢201Criado
application/json
Body
fuels
array[object (fuel_with_id) {16}]
opcional
id
number
opcional
vehicle_id
number
opcional
fuel_date
string
opcional
odometer
number
opcional
fuel_type_id
number
opcional
liters
number
opcional
lat
number
opcional
lng
number
opcional
total_value
number
opcional
liter_value
number
opcional
fully_filled
number
opcional
status
number
opcional
driver_id
number
opcional
organization_id
number
opcional
user_id
number
opcional
fuel_observation
string
opcional
Exemplo
{
"fuels": [
{
"id": 0,
"vehicle_id": 0,
"fuel_date": "string",
"odometer": 0,
"fuel_type_id": 0,
"liters": 0,
"lat": 0,
"lng": 0,
"total_value": 0,
"liter_value": 0,
"fully_filled": 0,
"status": 0,
"driver_id": 0,
"organization_id": 0,
"user_id": 0,
"fuel_observation": "string"
}
]
}
🟠400Pedido inválido
Modified at 2024-12-04 18:44:42