action rumble_get_account_users { label: "Get all users" provider: rumble method: GET path: "/account/users" encoding: json output: { type: "array" items: { type: "object" required: ["id"] properties: { client_admin: { type: "boolean" } client_id: { type: "string" format: "uuid" } created_at: { type: "integer" format: "int64" } email: { type: "string" } first_name: { type: "string" } id: { type: "string" format: "uuid" } invite_token_expiration: { type: "integer" format: "int64" } last_login_at: { type: "integer" format: "int64" } last_login_ip: { type: "string" } last_login_ua: { type: "string" } last_name: { type: "string" } login_failures: { type: "integer" format: "int64" } org_default_role: { type: "string" } org_roles: { type: "object" } reset_token_expiration: { type: "integer" format: "int64" } sso_only: { type: "boolean" } updated_at: { type: "integer" format: "int64" } } } } }