Get a user
GET/v3/users/:id
Get a user
Request
Path Parameters
id numberrequired
Responses
- 200
Successful
- */*
- Schema
- Example (from schema)
Schema
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
{
"data": {
"id": 1,
"name": "Jane Doe",
"email": "johndoe@example.com",
"phone": "+1384843",
"admin": false,
"owner": true,
"agency_owner": false,
"verified": true,
"role_id": 2
}
}
Loading...