Supercheck LogoSupercheck
Tags API

Create a tag

Create a new tag for organizing tests, monitors, and other resources.

POST
/api/tags

Authorization

bearerAuth
AuthorizationBearer <token>

CLI token (sck_live_*) for full API access, or trigger key (sck_trigger_* / legacy job_*) for job trigger endpoint only.

In: header

Request Body

application/json

name*string
color?string

Response Body

application/json

application/json

curl -X POST "https://demo.supercheck.dev/api/tags" \  -H "Content-Type: application/json" \  -d '{    "name": "production"  }'
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "name": "string",
  "color": "string"
}
{
  "error": "Unauthorized"
}