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.
organization_id string required
The unique identifier of the organization (format: org_*).
department_id string required
The unique identifier of the department (format: dept_*).
A department object.
cURL
- Bash
- Python
- Python
- JavaScript
curl https://api.aitronos.com/v1/organizations/org_xyz789/departments/dept_abc123 \
-H "Authorization: Bearer $ACCESS_TOKEN"