Skip to main content
POST
/
api
/
content
/
v2
/
groups
Create a Group
curl --request POST \
  --url https://{instance}.domo.com/api/content/v2/groups \
  --header 'Content-Type: application/json' \
  --header 'X-DOMO-Developer-Token: <api-key>' \
  --data '
{
  "name": "New Group",
  "description": "This is a new group",
  "type": "closed"
}
'
{
  "id": "123123123"
}

Authorizations

X-DOMO-Developer-Token
string
header
required

Body

application/json
name
string
required

Name of the group

type
enum<string>
required

Group type: closed, open, or dynamic

Available options:
closed,
open,
dynamic
description
string

Description of the group

Response

200 - application/json

Status Code: 200

id
string