action traccar_get_commands_types { label: "Fetch a list of available Commands for the Device or all possible Commands if Device ommited" provider: traccar method: GET path: "/commands/types" encoding: json input: { type: "object" properties: { deviceId: { type: "integer" } protocol: { type: "string" } textChannel: { type: "boolean" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { type: { type: "string" } } } } }