POST
/
tags
curl --request POST \
  --url https://app.quizrise.com/api/v1/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tag": "<string>"
}'
{
  "status": "success",
  "message": "<string>",
  "tag": {
    "id": "<string>",
    "tag": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Tag created successfully

The response is of type object.