Skip to main content
POST
/
tag-groups
Create a new tag group.
curl --request POST \
  --url https://openapi.pleo.io/v1/tag-groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "tagAttributes": [
    {
      "name": "<string>",
      "displayOrder": 123
    }
  ]
}
'
{
  "id": "0f0e000-000d-0d00-000b-00db0d000fae",
  "name": "<string>",
  "tagAttributes": [
    {
      "id": "0f0e000-000d-0d00-000b-00db0d000fae",
      "name": "<string>",
      "displayOrder": 123,
      "hidden": true
    }
  ],
  "archived": true
}

Authorizations

Authorization
string
header
required

Open API Bearer token

Body

application/json
name
string
required

This is the tag group name supplied on create

tagAttributes
object[]
required

These are the attributes that define a tag in this tag group

Response

Tag group has been created

id
string
required

This is the internal pleo identifier of the tag group

Example:

"0f0e000-000d-0d00-000b-00db0d000fae"

name
string
required

This is the tag group name supplied on create

tagAttributes
object[]
required

These are the attributes that define a tag in this tag group, i.e. the tag columns. Each tag column is included only once.

archived
boolean
required

This flag specifies whether the tag group has been archived in the Pleo system or not