Skip to content

Create group

Request

Create a group for your users.

Required permissions: apps:create, [appId]:create, groups:create.

Security
ClientAccessToken
Bodyapplication/jsonrequired
namestringrequired

Name of the group to create

descriptionstring
custom_dataobject

Group custom data object

curl -i -X POST \
  https://api.sbx.transmitsecurity.io/cis/v1/groups \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "string",
    "description": "string",
    "custom_data": {}
  }'

Responses

Bodyapplication/json
resultobjectrequired
Response
{ "result": { "group_id": "string", "name": "string", "description": "string", "created_at": 0, "updated_at": 0, "custom_data": {} } }