cURL
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 }
Creates a new group in your Domo instance.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
You must include the name of the group to create.
The name of the group
Returns a group object when successful. The returned group will have user attributes based on the information that was provided when group was created.