action traccar_put_commands_id { label: "Update a Saved Command" provider: traccar method: PUT path: "/commands/{id}" encoding: json input: { type: "object" properties: { attributes: { type: "object" properties: {} } description: { type: "string" } deviceId: { type: "integer" } id: { type: "integer" } type: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { attributes: { type: "object" properties: {} } description: { type: "string" } deviceId: { type: "integer" } id: { type: "integer" } type: { type: "string" } } } }