Tags
Create tag
Creates a tag definition. Tag names are normalized to lowercase with spaces replaced by hyphens.
post/tags
Request body
Example request
{
"name": "premium",
"color": "blue"
}Response
Tag created
Example response
{
"success": true,
"tag": {
"id": "tag_abc123",
"name": "premium",
"color": "#f97316"
}
}