Authorization: ********************{
"commands": [
{
"organization_id": 1,
"vehicle_id": 123,
"type_command_id": 5,
"label_code": "SPEED_LIMIT",
"value": 120,
"status": 0,
"is_system": 0,
"sent_command": "AT+SPEED=120"
}
]
}curl --location 'https://cgv-prd-command-api.contele.io/v1/command' \
--header 'x-api-key: {{api_key}}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"commands": [
{
"organization_id": 1,
"vehicle_id": 123,
"type_command_id": 5,
"label_code": "SPEED_LIMIT",
"value": 120,
"status": 0,
"is_system": 0,
"sent_command": "AT+SPEED=120"
}
]
}'