Skip to content
Last updated

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.

Path Parameters

organization_id string required

The unique identifier of the organization (format: org_*).

department_id string required

The unique identifier of the department (format: dept_*).


Returns

An array of department member objects.

cURL
curl https://api.aitronos.com/v1/organizations/org_xyz789/departments/dept_abc123/members \
  -H "Authorization: Bearer $ACCESS_TOKEN"