action stream_io_api_delete_image { label: "Delete image" description: "Deletes previously uploaded image" provider: stream_io_api method: DELETE path: "/channels/{type}/{id}/image" encoding: json input: { type: "object" properties: { id: { type: "string" } type: { type: "string" } url: { type: "string" } } required: ["id", "type"] additionalProperties: false } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }