Skip to main content
GET
/
api
/
v1
/
impersonation
/
customers
Get paginated customer members (Vortex employees only)
curl --request GET \
  --url https://api.example.com/api/v1/impersonation/customers \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "members": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "email": "<string>",
        "fullName": "<string>",
        "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "accountName": "<string>",
        "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "organizationName": "<string>",
        "createdAt": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 123,
    "limit": 123,
    "offset": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
number

Number of results per page (default: 10, max: 100)

offset
number

Offset for pagination (default: 0)

Search term for filtering by email address

Response

Returns paginated list of customer members

data
object
required