For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Tags

GET /api/v2/spaces/:space_id/tags

Path Parameters

Name
Type
Description

space_id

string

Space 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"
      }
    },
    {
      "id": "59575594-fed2-43fb-8590-210ba12604ea",
      "type": "tags",
      "attributes": {
        "name": "Two"
      },
      "relationships": {
        "space": {
          "data": {
            "id": "83e9ce00-3007-4e33-9e64-fc5343b5b84b",
            "type": "spaces"
          }
        }
      },
      "links": {
        "self": "https://environment.monterosa.cloud/api/v2/tags/59575594-fed2-43fb-8590-210ba12604ea"
      }
    }
  ]
}

Example

Last updated