action stream_io_api_get_command { label: "Get command" description: "Returns custom command by its name" provider: stream_io_api method: GET path: "/commands/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" required: ["args", "description", "duration", "name", "set"] properties: { args: { type: "string" } created_at: { type: "string" format: "date-time" } description: { type: "string" } duration: { type: "string" } name: { type: "string" } set: { type: "string" } updated_at: { type: "string" format: "date-time" } } } }