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
tag
string
required
Required string length: 1 - 50

Response

200
application/json
Tag created successfully
status
enum<string>
Available options:
success
message
string
tag
object