action stream_io_api_delete_channels { label: "Deletes channels asynchronously" description: "Allows to delete several channels at once asynchronously" provider: stream_io_api method: POST path: "/channels/delete" encoding: json input: { type: "object" properties: { cids: { type: "array" description: "All channels that should be deleted" items: { type: "string" } } hard_delete: { type: "boolean" description: "Specify if channels and all ressources should be hard deleted" } } } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } result: { type: "object" } task_id: { type: "string" } } } }