Retrieve all members of a specific department.
GEThttps://api.aitronos.com/v1/organizations/{organization_id}/departments/{department_id}/members
Returns a list of all users who are members of the specified department. Each entry includes the user's basic profile information and the date they were added to the department.
organization_id string required
The unique identifier of the organization (format: org_*).
department_id string required
The unique identifier of the department (format: dept_*).
An array of department member objects.
cURL
- Bash
- Python
- Python
- JavaScript
curl https://api.aitronos.com/v1/organizations/org_xyz789/departments/dept_abc123/members \
-H "Authorization: Bearer $ACCESS_TOKEN"