Documentation Index
Fetch the complete documentation index at: https://docs.laburen.com/llms.txt
Use this file to discover all available pages before exploring further.
This endpoint creates a new annotation tag for the authenticated user’s organization. It supports:
- Creating tags with unique names per organization
- Automatic duplicate detection (prevents creating tags with the same name)
Body
Required
The name of the annotation tag. Must be unique within the organization.
Response
Unique identifier of the created annotation tag (CUID format).
Name of the annotation tag.
ID of the organization the tag belongs to.
ISO 8601 timestamp of when the tag was created.
ISO 8601 timestamp of when the tag was last updated.
Error Responses
| Status Code | Type | Description |
|---|
| 401 | UNAUTHORIZED | Missing or invalid authentication session. |
| 409 | ALREADY_EXISTS | A tag with the same name already exists in the organization. |
curl --location --request POST 'https://dashboard.laburen.com/api/annotations/tags' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <API_KEY>' \
--data-raw '{
"name": "bug"
}'
{
"id": "clxxxxxxxxxxxxxxxxx",
"name": "bug",
"organizationId": "clxxxxxxxxxxxxxxxxx",
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}