Skip to main content
GET
/
v1
/
groups
List groups
curl --request GET \
  --url https://api.domo.com/v1/groups \
  --header 'Authorization: Bearer <token>'
[
  {
    "default": false,
    "id": 2079369923,
    "memberCount": 30,
    "name": "Sales Team East"
  },
  {
    "default": false,
    "id": 1117375123,
    "memberCount": 55,
    "name": "Sales Team West"
  }
]

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 groups to return in the list. The default is 50 and the maximum is 500.

offset
integer

The offset of the group ID to begin list of groups within the response.

Response

200 - application/json

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

default
boolean
id
integer
memberCount
integer
name
string