action stream_io_api_reactivate_users { label: "Reactivate users" description: "Reactivate users in batches" provider: stream_io_api method: POST path: "/users/reactivate" encoding: json input: { type: "object" required: ["user_ids"] properties: { created_by_id: { type: "string" description: "ID of the user who's reactivating the users" } restore_messages: { type: "boolean" description: "Restore previously deleted messages" } user_ids: { type: "array" description: "User IDs to reactivate" items: { type: "string" } } } } output: { type: "object" required: ["duration", "task_id"] properties: { duration: { type: "string" description: "Duration of the request in human-readable format" } task_id: { type: "string" } } } }