Skip to main content
GET
/
tag-groups
/
{tagGroupId}
/
tags
Get all tags for a specified tag group
curl --request GET \
  --url https://openapi.pleo.io/v1/tag-groups/{tagGroupId}/tags \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "0f0e000-000d-0d00-000b-00db0d000fae",
    "tagGroupId": "0f0e000-000d-0d00-000b-00db0d000fae",
    "attributeValues": [
      {
        "attributeId": "0f0e000-000d-0d00-000b-00db0d000fae",
        "value": "<string>"
      }
    ],
    "displayOrder": 123,
    "hidden": true
  }
]

Authorizations

Authorization
string
header
required

Open API Bearer token

Path Parameters

tagGroupId
string
required

Unique UUID of the tag group.

Example:

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

Query Parameters

hidden
boolean

This flag allows you fetch only tags that have been hidden/archived if set to true or tags that are still actively in use if set to false. By default it will only fetch active tags.

Response

Tags have been returned

id
string
required

This is the internal pleo identifier of the tag

Example:

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

tagGroupId
string
required

This is the internal pleo identifier of the tag group this tag belongs to

Example:

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

attributeValues
object[]
required

These are the attributes and their values assigned to this tag

displayOrder
number
required

This is the display order position for this tag when displayed in a list.

hidden
boolean
required

This flag specifies if the tag is hidden and not visible for use in pleo when tagging expenses.