cURL
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>" } }
Create a new tag for organizing quizzes
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Tag created successfully
The response is of type object.
object