/api/v1/departmentsList departments
Every department, with its parent and current head count.
This endpoint takes no parameters beyond the URL itself.
Example response
{
"departments": [
{
"id": "a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d",
"name": "Operations",
"parent_id": null,
"parent_name": null,
"user_count": 12
}
],
"total": 4
}Copy and paste
curl -X GET "https://api.usesigned.co.uk/api/v1/departments" \
-H "X-API-Key: $SIGNED_API_KEY"