Skip to content
Last updated

Retrieve a single department by its ID.

GEThttps://api.aitronos.com/v1/organizations/{organization_id}/departments/{department_id}

Returns the full details of a specific department within an organization. The authenticated user must be a member of the organization.

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

A department object.

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