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

Create Tag

POST /api/v2/tags

Headers

Name
Type
Description

Authorization

string

Bearer token

Content-Type

string

application/vnd.api+json

Request

{
  "data": {
    "type": "tags",
    "attributes": {
      "name": "My Tag"
    },
    "relationships": {
      "space": {
        "data": {
          "type": "spaces",
          "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
        }
      }
    }
  }
}

Attributes

Name
Type
Description

name

string

Tag name

Response

Example

Last updated