POST
/
api
/
v1
/
admin
/
tags
/
analyze
Analyze tags
curl --request POST \
  --url http://localhost:8787/api/v1/admin/tags/analyze \
  --header 'Content-Type: application/json' \
  --data '{
  "quizId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "singleplayer"
}'
{
  "success": true,
  "quizId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tags": [
    "<string>"
  ],
  "categories": [
    "<string>"
  ]
}

Body

application/json
quizId
string<uuid>
required
type
enum<string>
required
Available options:
singleplayer,
multiplayer,
document,
random

Response

200 - application/json

Tags analyzed successfully

success
boolean
required
quizId
string<uuid>
required
tags
string[]
required
categories
string[]
required