Skip to main content

Tags

[GET] List tags

Method: GET
Endpoint: /{yourCorePath}/api/{workspaceUuid}/tags
Authorization
: Bearer
Response:

{
    "data": [
        {
            "id": 3,
            "uuid": "a09367a5-dfc1-43d7-9557-70eb93e01e01",
            "name": "news",
            "hex_color": "#38bdf8"
        },
        {
            "id": 2,
            "uuid": "f9288040-0d50-4e40-83d6-10ef6dd31d9d",
            "name": "release",
            "hex_color": "#111827"
        },
        {
            "id": 1,
            "uuid": "2323e1eb-b3a6-4183-990d-4d5afea04835",
            "name": "motivation",
            "hex_color": "#60a5fa"
        }
    ]
}
[GET] Get a tag

Method: GET
Endpoint: /{yourCorePath}/api/{workspaceUuid}/tags/{tagUuid}
Authorization
: Bearer
Response:

{
  "id": 1,
  "uuid": "2323e1eb-b3a6-4183-990d-4d5afea04835",
  "name": "motivation",
  "hex_color": "#60a5fa"
}
[POST] Create a tag

MethodPOST
Endpoint: /{yourCorePath}/api/{workspaceUuid}/tags
Authorization
: Bearer
Body:

{
  "name": "motivation",
  "hex_color": "#60a5fa"
}
[DEL] Delete a tag

Method: DEL
Endpoint: /{yourCorePath}/api/{workspaceUuid}/tags/{tagUuid}
Authorization
: Bearer