DELETE
/
tags
/
{tagId}
curl --request DELETE \
  --url https://app.quizrise.com/api/v1/tags/{tagId} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Tag deleted successfully"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tagId
string
required

The ID of the tag to delete

Response

200
application/json
Tag deleted successfully
status
enum<string>
Available options:
success
message
string
Example:

"Tag deleted successfully"