action stream_io_api_create_command { label: "Create command" description: "Creates custom chat command" provider: stream_io_api method: POST path: "/commands" encoding: json input: { type: "object" description: "Represents custom chat command" required: ["description", "name"] properties: { args: { type: "string" description: "Arguments help text, shown in commands auto-completion" } description: { type: "string" description: "Description, shown in commands auto-completion" } name: { type: "string" description: "Unique command name" } set: { type: "string" description: "Set name used for grouping commands" } } } output: { type: "object" required: ["duration"] properties: { command: { type: "object" description: "Represents custom chat command" required: ["args", "description", "name", "set"] properties: { args: { type: "string" description: "Arguments help text, shown in commands auto-completion" } created_at: { type: "string" format: "date-time" description: "Date/time of creation" } description: { type: "string" description: "Description, shown in commands auto-completion" } name: { type: "string" description: "Unique command name" } set: { type: "string" description: "Set name used for grouping commands" } updated_at: { type: "string" format: "date-time" description: "Date/time of the last update" } } } duration: { type: "string" description: "Duration of the request in human-readable format" } } } }