Skip to main content
POST
/
tags
Create a tag
curl --request POST \
  --url https://alfaone.app/api/v1/tags \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "color": "#6366f1",
  "description": "<string>"
}
'
{
  "tag": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "color": "#6366f1",
    "description": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://v4-docs.alfaone.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for authentication. Format: ak_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Body

application/json
name
string
required

Name of the tag (must be unique within the organization)

color
string
default:#6366f1

Hex color code for the tag

Example:

"#6366f1"

description
string

Optional description of the tag

Response

Tag created successfully

tag
object