Get early access 🔓 contact us at sales@cariqa.com
curl --request GET \
--url https://connect.cariqa.com/api/v1/users/ \
--header 'Authorization: Bearer <token>'{
"count": 123,
"results": [
{
"id": "<string>",
"email": "jsmith@example.com",
"locale": "en",
"custom_properties": {
"external_id": "<string>"
}
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Retrieve list of the users
curl --request GET \
--url https://connect.cariqa.com/api/v1/users/ \
--header 'Authorization: Bearer <token>'{
"count": 123,
"results": [
{
"id": "<string>",
"email": "jsmith@example.com",
"locale": "en",
"custom_properties": {
"external_id": "<string>"
}
}
],
"next": "http://api.example.org/accounts/?page=4",
"previous": "http://api.example.org/accounts/?page=2"
}Documentation Index
Fetch the complete documentation index at: https://docs.cariqa.com/llms.txt
Use this file to discover all available pages before exploring further.
JWT Authorization header using the Bearer scheme.
A page number within the paginated result set.
Number of results to return per page.
Search user by: id, external_id
Was this page helpful?