Skip to main content
POST
/
v1
/
tags
Create a tag
curl --request POST \
  --url https://thanos.notealy.com/v1/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "color": "#88DD00"
}
'
{
  "statusCode": 400,
  "message": "Validation failed",
  "error": "Bad Request"
}

Documentation Index

Fetch the complete documentation index at: https://docs.notealy.com/llms.txt

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

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
required

Tag name. Must be unique within the organization.

Required string length: 1 - 100
color
string

Hex color, including the leading #. Defaults to the organization default.

Example:

"#88DD00"

Response

The created tag