Skip to main content
GET
/
tag-groups
/
{tagGroupId}
/
tags
/
{tagId}
Get a tag from a tag group
curl --request GET \
  --url https://openapi.pleo.io/v1/tag-groups/{tagGroupId}/tags/{tagId} \
  --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"

tagId
string
required

Unique UUID of the tag.

Example:

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

Response

Tag has 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.