Skip to main content
POST
/
groups
Create a new group
curl --request POST \
  --url http://localhost:8080/api/v1/groups \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "attributes": {
      "name": "<string>"
    },
    "type": "<string>"
  }
}
'
{
  "attributes": {
    "name": "<string>"
  },
  "id": "<string>",
  "type": "<string>"
}

Authorizations

Authorization
string
header
required

Body

application/json

Group information

Group input model

data
object

Response

Created

Group response model

attributes
object
id
string
type
string