Skip to main content
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

Authorization
string
default:"Bearer "
required
API Key. Formato: Bearer lbt_•••

Path Parameters

id
uuid
required
ID del dispositivo

Respuesta

Array de comandos disponibles:
id
uuid
ID del comando
name
string
Nombre legible del comando
widget
object
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" }
      ]
    }
  }
]