Skip to main content
POST
/
v1
/
groups
Create a group
curl --request POST \
  --url https://api.domo.com/v1/groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Groupy Group"
}
'
{
  "id": 876655018,
  "name": "Groupy Group",
  "active": true,
  "creatorId": "87659738",
  "default": false
}

Authorizations

Authorization
string
header
required

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

Body

application/json

You must include the name of the group to create.

name
string
required

The name of the group

Response

200 - application/json

Returns a group object when successful. The returned group will have user attributes based on the information that was provided when group was created.

id
integer
name
string
active
boolean
creatorId
string
default
boolean