Get all users
GET/v3/users
Get all users
Request
Query Parameters
limit number
Possible values: >= 1
and <= 50
Default value: 50
number of records to be fetched
page number
Possible values: >= 1
Page of the contacts
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
id number
User Id
name string
User name
email string
User email
phone string
User phone number
admin boolean
Is user an admin
owner boolean
Is user owner of the account
agency_owner boolean
Is user an agency owner
verified boolean
Is user account verified?
role_id number
Id of the user role
has_next_page boolean
{
"data": [
{
"id": 1,
"name": "Jane Doe",
"email": "johndoe@example.com",
"phone": "+1384843",
"admin": false,
"owner": true,
"agency_owner": false,
"verified": true,
"role_id": 2
}
],
"has_next_page": true
}
Loading...