action traccar_get_commands { label: "Fetch a list of Saved Commands" description: "Without params, it returns a list of Saved Commands the user has access to" provider: traccar method: GET path: "/commands" encoding: json input: { type: "object" properties: { all: { type: "boolean" } deviceId: { type: "integer" } groupId: { type: "integer" } refresh: { type: "boolean" } userId: { 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" } } } } }