Supercheck LogoSupercheck
Tests API

Remove a tag from a test

Remove a specific tag from a test.

DELETE
/api/tests/{id}/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

Path Parameters

id*string

Test ID

Formatuuid

Request Body

application/json

tagId*string
Formatuuid

Response Body

application/json

application/json

application/json

application/json

curl -X DELETE "https://demo.supercheck.dev/api/tests/497f6eca-6276-4993-bfeb-53cbbbba6f08/tags" \  -H "Content-Type: application/json" \  -d '{    "tagId": "f69eb9f1-ae9f-4086-b25c-c39758a43fb3"  }'
{
  "success": true
}
Empty
{
  "error": "Unauthorized"
}
{
  "error": "string"
}
{
  "error": "Not found"
}