action stream_io_api_delete_command { label: "Delete command" description: "Deletes custom chat command" provider: stream_io_api method: DELETE path: "/commands/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" required: ["duration", "name"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } name: { type: "string" } } } }