action stream_io_api_restore_users { label: "Restore users" description: "Restore soft deleted users" provider: stream_io_api method: POST path: "/users/restore" encoding: json input: { type: "object" required: ["user_ids"] properties: { user_ids: { type: "array" items: { type: "string" } } } } output: { type: "object" required: ["duration"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } } } }