Users

Use the Users API to fetch User Subscription data

Get bulk User information

Provides User data and their corresponding Subscription info

Request
Security:
OAuthFlow (users:read)
query Parameters
cursor
string

A pagination cursor

Example: cursor=abc123
limit
integer

the number of Users on the requested page

Example: limit=100
Responses
200

Successfully accepted and processed request

400

Invalid parameter in request query or body

401

Unauthorized

403

Access Denied

404

The specified resource was not found

429

The user has sent too many requests in a given amount of time

500

Internal Server Error

get/users
Request samples
curl -i -X GET \
  'https://api.attentivemobile.com/v1/users?cursor=abc123&limit=100' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Response samples
application/json
{
  • "nextPageCursor": "string",
  • "users": [
    ]
}