Skip to main content
GET
/
users
List users
curl --request GET \
  --url https://apiv2.example.com/users \
  --header 'X-Api-Key: <api-key>'
{
  "items": [
    {
      "userId": "<string>",
      "name": "<string>",
      "email": "jsmith@example.com",
      "msisdn": "<string>",
      "identity": "<string>",
      "referenceId": "hr-employee-98765",
      "customers": [
        {
          "customerId": "<string>",
          "name": "<string>"
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "metadata": {}
    }
  ],
  "pagination": {
    "nextCursor": "<string>"
  }
}

Authorizations

X-Api-Key
string
header
required

An API key that grants access to the Connect API. You can create and manage API keys in the portal.

Query Parameters

filter
string

A free text search string to filter users by name or email.

customerId
string[]

Filter by customer. Accepts either:

  • Internal UUID (e.g., "a47ac10b-58cc-4372-a567-0e02b2c3d479")
  • External referenceId (e.g., "crm-customer-12345")
limit
integer
default:100

The maximum number of items to return.

Required range: 1 <= x <= 1000
cursor
string

Opaque pagination token from a previous response's nextCursor.

Response

A list of users.

items
object[]
required
pagination
object
required