IdenIden Docs
Lighthouse APIUsers

List users

Returns a paginated list of all users in your organization.

GET
/users/

Authorization

ApiKeyAuth
Authorization<token>

API key authentication. Format: Api-Key <your_api_key>

In: header

Query Parameters

limit?integer

Number of results to return per page.

Default50
offset?integer

The initial index from which to return the results.

Default0

Response Body

application/json

curl -X GET "https://developer.idenhq.com/org/{tenant_slug}/api/users/"
{
  "count": 0,
  "next": "http://example.com",
  "previous": "http://example.com",
  "results": [
    {
      "external_uuid": "ac0116b9-f581-403e-b8c2-fa4601b86b8a",
      "username": "string",
      "email": "user@example.com",
      "first_name": "string",
      "last_name": "string"
    }
  ]
}
Empty
Empty