Skip to main content
POST
/
groups
Create a new group
curl --request POST \
  --url https://api.eu.bronto.io/groups \
  --header 'Content-Type: application/json' \
  --header 'X-BRONTO-API-KEY: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "description": "<string>",
  "created_at": 1710948395538,
  "modified_at": 1710948395538
}

Authorizations

X-BRONTO-API-KEY
string
header
required

Body

application/json
name
string
required

The display name of the group.

description
string

A brief summary or explanation of the group's purpose.

Response

Group created successfully

group_id
string<uuid>

A unique identifier for the group.

name
string

The display name of the group.

description
string

A brief summary or explanation of the group's purpose.

created_at
integer<int64>

The timestamp when the group was created.

Example:

1710948395538

modified_at
integer<int64>

The timestamp when the group was last modified.

Example:

1710948395538