action stream_io_api_delete_device { label: "Delete device" description: "Deletes device" provider: stream_io_api method: DELETE path: "/devices" encoding: json input: { type: "object" properties: { id: { type: "string" } user_id: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }