Skip to main content
POST
/
v0
/
platform
/
tag-groups
Create a tag group
curl --request POST \
  --url https://api.sandbox.teal.dev/v0/platform/tag-groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
name
string
required

An arbitrary string, useful for identifying the tag group to the user.

Response

Successful Response

id
string
required

The unique ID of the object.

name
string
required

An arbitrary string, useful for identifying the tag to the user.