Skip to content

Create tag

PUT
/api/v1/tag
curl --request PUT \
--url https://example.com/api/v1/tag \
--header 'Content-Type: application/json' \
--data '{ "name": "example" }'
Media type application/json
object
name
required

Tag name

string
Example generated
{
"name": "example"
}

Tag created

Media type application/json
object
id
required

Tag ID (15 chars)

string
name
required

Tag name

string
created
string format: date-time
updated
string format: date-time
Example generated
{
"id": "example",
"name": "example",
"created": "2026-04-15T12:00:00Z",
"updated": "2026-04-15T12:00:00Z"
}

Bad Request

Internal Server Error