Skip to main content
PUT
/
v1
/
groups
/
{group_id}
Update a group
curl --request PUT \
  --url https://api.domo.com/v1/groups/{group_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Groupy McGroup",
  "active": true
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

group_id
string
required

Body

application/json
name
string

The name of the group

active
boolean

If the group is active

Response

200

Returns the parameter of success or error based on the group ID being valid.

HTTP/1.1 200 OK