curl --location --request PUT 'https://myquiz.nvtai24.site/api/Decks/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "string",
"description": "string",
"status": "Draft",
"visibility": "Public",
"tags": [
"string"
],
"thumbnailUrl": "string",
"questionsToAdd": [
{
"content": "string",
"type": "MultipleChoice",
"hint": "string",
"explanation": "string",
"options": [
"string"
],
"correctAnswers": [
"string"
]
}
],
"questionsToUpdate": [
{
"id": 0,
"content": "string",
"type": "MultipleChoice",
"hint": "string",
"explanation": "string",
"options": [
"string"
],
"correctAnswers": [
"string"
]
}
],
"questionIdsToDelete": [
0
]
}'