USERS
EVENTS
OBJECTS
PREFERENCE
- Update User Preferences
- Get User Preferences
- Manage Tenant Preferences
- Update Object Preferences
- Get Object Preferences
LISTS
BROADCAST
USERS
List Users
API to list cursor based paginated list of users
GET
/
v1
/
user
curl --request GET \
--url https://hub.suprsend.com/v1/user/ \
--header 'Authorization: Bearer <token>'
{
"meta": {
"count": 1201709,
"limit": 10,
"has_prev": false,
"before": null,
"has_next": true,
"after": "01JXXXX99APxxxxxx8Wxxxx1B"
},
"results": [
{
"distinct_id": "_distinct_id_",
"properties": {
"name": "Marge Simpson"
},
"created_at": "2025-04-04T21:37:36.712496+00:00",
"updated_at": "2025-04-04T21:37:36.743167+00:00",
"$inbox": [
{
"value": "4nlPk4t4kurG5kChOELB8Q1LcDI9DHzHQ70st2E2C24",
"id_provider": "suprsend",
"status": "active",
"perma_status": "active"
}
]
}
]
}
Authorizations
Pass as Bearer <API_KEY>
. Get API Key from SuprSend dashboard Developers -> API Keys section.
Response
200 - application/json
200
Metadata related to pagination.
Total number of records available.
Example:
1200002
Maximum number of records per page.
Example:
10
Indicates if there is a previous page.
Example:
false
Cursor for the previous page.
Example:
null
Indicates if there is a next page.
Example:
true
Cursor for the next page.
Example:
"01JXXXX99APxxxxxx8Wxxxx1B"
List of users objects
Was this page helpful?
curl --request GET \
--url https://hub.suprsend.com/v1/user/ \
--header 'Authorization: Bearer <token>'
{
"meta": {
"count": 1201709,
"limit": 10,
"has_prev": false,
"before": null,
"has_next": true,
"after": "01JXXXX99APxxxxxx8Wxxxx1B"
},
"results": [
{
"distinct_id": "_distinct_id_",
"properties": {
"name": "Marge Simpson"
},
"created_at": "2025-04-04T21:37:36.712496+00:00",
"updated_at": "2025-04-04T21:37:36.743167+00:00",
"$inbox": [
{
"value": "4nlPk4t4kurG5kChOELB8Q1LcDI9DHzHQ70st2E2C24",
"id_provider": "suprsend",
"status": "active",
"perma_status": "active"
}
]
}
]
}