Overview
Retrieves a paginated list of all users in your account, including the account owner and all shared users. This endpoint provides comprehensive information about each user’s role, invitation status, and activity.Purpose
User Management
- View All Users: See everyone who has access to your account
- Monitor Invitations: Track invitation status and acceptance
- Role Overview: See what roles users have been assigned
- Activity Tracking: Monitor user login activity and engagement
Account Administration
- User Audit: Review all users and their access levels
- Invitation Management: Track pending and accepted invitations
- Access Control: Understand who has access to what
- User Activity: Monitor user engagement and activity
Query Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
page | integer | No | Page number for pagination (starts from 1) | 1 |
Response Structure
The response includes pagination information and an array of user objects:| Field | Type | Description |
|---|---|---|
count | integer | Total number of users in the account |
next | integer/null | Next page number (null if no more pages) |
previous | integer/null | Previous page number (null if first page) |
results | array | Array of user objects |
User Object Structure
Each user in theresults array contains:
| Field | Type | Description |
|---|---|---|
id | integer | Shared user relationship ID |
shared_user | object | User details (name, email, etc.) |
access_level | object | User’s role and permissions |
invitation_sent_on | string/null | When invitation was sent |
invitation_accepted_on | string/null | When invitation was accepted |
is_invitation_sent | boolean | Whether invitation has been sent |
is_invitation_accepted | boolean | Whether invitation has been accepted |
created | string | When user was added to account |
modified | string | When user was last modified |
tags | array | Tags assigned to the user |
Examples
Get All Users
Get Specific Page
Response Example
User Status Indicators
Account Owner
is_shared: false: Indicates the account owneraccess_level.name: "OWNER": Has full account access- No invitation fields: Owner doesn’t need invitations
Shared Users
is_shared: true: Indicates invited users- Invitation Status: Track invitation lifecycle
- Role-based Access: Limited by assigned role
Invitation Status
- Pending:
is_invitation_sent: true,is_invitation_accepted: false - Accepted:
is_invitation_sent: true,is_invitation_accepted: true - Never Sent:
is_invitation_sent: false(shouldn’t happen)
Integration Examples
JavaScript - Display User List
Python - User Management Dashboard
PHP - User List with Pagination
Use Cases
User Management Dashboard
- User Overview: Display all users in your account
- Status Monitoring: Track invitation and acceptance status
- Role Management: See who has what access level
- Activity Tracking: Monitor user login activity
Administrative Tools
- User Audit: Review all users and their access
- Invitation Tracking: Monitor pending invitations
- Access Control: Understand user permissions
- User Activity: Track user engagement
API Integration
- User Synchronization: Sync user data with external systems
- Access Control: Implement role-based access control
- User Analytics: Analyze user activity and engagement
- Automated Management: Automate user management tasks
This endpoint provides comprehensive user information including invitation status, roles, and activity. Use this data to manage user access and monitor account activity.
The account owner (is_shared: false) will always appear first in the list and has full access to the account. Shared users have limited access based on their assigned roles.
Authorizations
API key authentication. Enter your API key directly in the Authorization header.
Query Parameters
Page number for pagination
Required range:
x >= 1