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
}
}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
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of results per page (default: 10, max: 100)
Offset for pagination (default: 0)
Search term for filtering by email address
Returns paginated list of customer members
Show child attributes