Skip to main content
GET
/
api
/
public
/
v1
/
users
List Users
curl --request GET \
  --url https://api.example.com/api/public/v1/users
{
  "data": [
    {
      "id": "usr_123...",
      "email": "[email protected]",
      "firstName": "Jane",
      "lastName": "Doe",
      "role": "EMPLOYEE",
      "employmentType": "FULL_TIME",
      "position": "Software Engineer",
      "isActive": true,
      "assignedManagerId": "usr_456...",
      "createdAt": "2026-05-01T00:00:00.000Z",
      "updatedAt": "2026-05-18T00:00:00.000Z"
    }
  ]
}
This is primarily useful for syncing user directories with third-party HR, payroll, or SSO tools.

Query Parameters

role
string
Filter users by their role (e.g., SUPER_ADMIN, COMPANY_ADMIN, MANAGER, EMPLOYEE).
employmentType
string
Filter users by employment type (e.g., FULL_TIME, PART_TIME, CASUAL, CONTRACTOR).
isActive
boolean
Filter active vs inactive users. Defaults to true.

Response

{
  "data": [
    {
      "id": "usr_123...",
      "email": "[email protected]",
      "firstName": "Jane",
      "lastName": "Doe",
      "role": "EMPLOYEE",
      "employmentType": "FULL_TIME",
      "position": "Software Engineer",
      "isActive": true,
      "assignedManagerId": "usr_456...",
      "createdAt": "2026-05-01T00:00:00.000Z",
      "updatedAt": "2026-05-18T00:00:00.000Z"
    }
  ]
}