cURL
curl --request GET \ --url https://v1.api.flux-os.com/organization/users \ --header 'x-api-key: <api-key>' \ --header 'x-user-id: <api-key>'
{ "data": [ { "stytch_id": "<string>", "organization": "<unknown>", "first_name": "<string>", "last_name": "<string>", "email": "<string>", "phone": "<string>", "title": "<string>", "id": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "roles": "<unknown>", "permissions": "<unknown>" } ], "meta": { "current_page": 123, "total_pages": 123, "total_items": 123, "per_page": 123 } }
Retrieve a list of users in the current organization with pagination and filtering options.
Page number for pagination
x >= 1
Filter by role IDs
Filter by permission IDs
Filter by title
A paginated list of users.
Show child attributes