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
}
'

Documentation Index

Fetch the complete documentation index at: https://domoinc-arun-raj-connectors-domo-479695-remove-crime-report.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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