Listar comandos
curl --request GET \
--url https://api.locatebyteli.com/devices/{id}/commands \
--header 'Authorization: <authorization>'[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Apagar motor",
"widget": {
"type": "button",
"label": "Apagar",
"confirm": true,
"confirm_message": "¿Estás seguro de apagar el motor?"
}
},
{
"id": "660e8400-e29b-41d4-a716-446655440000",
"name": "Encender motor",
"widget": {
"type": "button",
"label": "Encender",
"confirm": true
}
},
{
"id": "770e8400-e29b-41d4-a716-446655440000",
"name": "Configurar APN",
"widget": {
"type": "form",
"fields": [
{ "name": "apn", "type": "text", "label": "APN" },
{ "name": "user", "type": "text", "label": "Usuario" },
{ "name": "password", "type": "password", "label": "Contraseña" }
]
}
}
]
Comandos
Listar comandos
Lista los comandos disponibles para el modelo del dispositivo
GET
/
devices
/
{id}
/
commands
Listar comandos
curl --request GET \
--url https://api.locatebyteli.com/devices/{id}/commands \
--header 'Authorization: <authorization>'[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Apagar motor",
"widget": {
"type": "button",
"label": "Apagar",
"confirm": true,
"confirm_message": "¿Estás seguro de apagar el motor?"
}
},
{
"id": "660e8400-e29b-41d4-a716-446655440000",
"name": "Encender motor",
"widget": {
"type": "button",
"label": "Encender",
"confirm": true
}
},
{
"id": "770e8400-e29b-41d4-a716-446655440000",
"name": "Configurar APN",
"widget": {
"type": "form",
"fields": [
{ "name": "apn", "type": "text", "label": "APN" },
{ "name": "user", "type": "text", "label": "Usuario" },
{ "name": "password", "type": "password", "label": "Contraseña" }
]
}
}
]
Authorization
API Key. Formato:
Bearer lbt_•••Path Parameters
ID del dispositivo
Respuesta
Array de comandos disponibles:ID del comando
Nombre legible del comando
Configuración del widget UI para el comando
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Apagar motor",
"widget": {
"type": "button",
"label": "Apagar",
"confirm": true,
"confirm_message": "¿Estás seguro de apagar el motor?"
}
},
{
"id": "660e8400-e29b-41d4-a716-446655440000",
"name": "Encender motor",
"widget": {
"type": "button",
"label": "Encender",
"confirm": true
}
},
{
"id": "770e8400-e29b-41d4-a716-446655440000",
"name": "Configurar APN",
"widget": {
"type": "form",
"fields": [
{ "name": "apn", "type": "text", "label": "APN" },
{ "name": "user", "type": "text", "label": "Usuario" },
{ "name": "password", "type": "password", "label": "Contraseña" }
]
}
}
]
⌘I