/api/v1/usersList people
Lists the directory, newest page first, ordered by display name.
Parameters
Query string
searchOptionalstringMatches display name, email or job title.
example: "alex"
department_idOptionalstringLimit to one department.
uuid
statusOptionalone ofLimit by whether the person is active.
one of: active, inactive
pageOptionalnumberPage number, starting at 1.
default 1 · min 1
limitOptionalnumberHow many to return per page.
default 50 · min 1 · max 500
Example response
{
"users": [
{
"id": "7c3f2b1a-0d4e-4f5a-8b9c-1d2e3f4a5b6c",
"email": "alex.morgan@acme.com",
"display_name": "Alex Morgan",
"first_name": "Alex",
"last_name": "Morgan",
"job_title": "Operations Manager",
"department_id": "a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d",
"department_name": "Operations",
"phone": "+44 20 7946 0000",
"mobile": null,
"active": true
}
],
"total": 68,
"page": 1,
"limit": 50
}Copy and paste
curl -X GET "https://api.usesigned.co.uk/api/v1/users" \
-H "X-API-Key: $SIGNED_API_KEY"