List all users assigned to a specific role within an organization.
GEThttps://api.aitronos.com/v1/organizations/{organization_id}/roles/{role_id}/members
organization_id string required
Organization ID (org_ prefixed string).
role_id string required
Role ID (role_ prefixed string).
skip integer optional · Defaults to 0
Number of records to skip for pagination.
limit integer optional · Defaults to 50
Number of records to return (max 100).
An object containing a members array and a total count. Each member includes user_id, full_name, email, account_state, and avatar_url.
cURL
- Bash
- Python
- Python
- JavaScript
curl "https://api.aitronos.com/v1/organizations/org_abc123/roles/role_xyz789/members?skip=0&limit=50" \
-H "Authorization: Bearer $ACCESS_TOKEN"