Get Tag

GET /api/v2/tags/:tag_id

Path Parameters

Name
Type
Description

tag_id

string

Tag UUID

Headers

Name
Type
Description

Authorization

string

Bearer token

Content-Type

string

application/vnd.api+json

Response

200 OK
{
  "data": {
    "id": "a3b056b9-ba02-44fc-bd59-deaa1d4e38d2",
    "type": "tags",
    "attributes": {
      "name": "One"
    },
    "relationships": {
      "space": {
        "data": {
          "id": "83e9ce00-3007-4e33-9e64-fc5343b5b84b",
          "type": "spaces"
        }
      }
    },
    "links": {
      "self": "https://environment.monterosa.cloud/api/v2/tags/a3b056b9-ba02-44fc-bd59-deaa1d4e38d2"
    }
  }
}

Example

curl -i --request GET \
  --url https://environment.monterosa.cloud/api/v2/tags/a3b056b9-ba02-44fc-bd59-deaa1d4e38d2 \
  --header 'Authorization: Bearer rJURvA6XuuHxG5RHauqR1yy64JQcTfGu' \
  --header 'Content-Type: application/vnd.api+json'

Last updated

Was this helpful?