Skip to main content
GET
/
v1
/
users
List users
curl --request GET \
  --url https://api.domo.com/v1/users \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 535460005,
    "title": "Supreme Ninja Master",
    "email": "hattori.hanzo@domo.com",
    "role": "Admin",
    "phone": "801-787-8456",
    "name": "Hattori Hanzo"
  },
  {
    "id": 1845705061,
    "title": "Game Theory",
    "email": "john.nash@domo.com",
    "role": "Admin",
    "name": "John Forbes Nash, Jr."
  },
  {
    "id": 55541092,
    "title": "Electric Mayhem",
    "email": "doctor.teeth@domo.com",
    "role": "Privileged",
    "name": "Dr. Teeth"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

The amount of users to return in the list. The default is 50 and the maximum is 500.

offset
integer

The offset of the user ID to begin list of users within the response.

Response

200 - application/json

Returns all user objects that meet argument criteria from original request.

id
integer
title
string
email
string
role
string
phone
string
name
string