action traccar_get_commands_send { label: "Fetch a list of Saved Commands supported by Device at the moment" description: "Return a list of saved commands linked to Device and its groups, filtered by current Device protocol support" provider: traccar method: GET path: "/commands/send" encoding: json input: { type: "object" properties: { deviceId: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { attributes: { type: "object" properties: {} } description: { type: "string" } deviceId: { type: "integer" } id: { type: "integer" } type: { type: "string" } } } } }