POST
/tagsCreate a tag
Create a new tag
Request body
| Field | Type | Description |
|---|---|---|
namerequired | string | Tag name |
color | string | Tag color |
Response
Tag created
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
namerequired | string | |
colorrequired | string | Hex color code |
createdAtrequired | string | ISO 8601 timestamp |
Errors
400Validation error401UnauthorizedExample request
curl \
-X POST \
"https://feedback.quackback.io/api/v1/tags" \
-H "Authorization: Bearer qb_your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Bug",
"color": "#3b82f6"
}'