submit:coursework permission; only the student who owns the attempt may save answers. Upserts only the answers provided in the body (send changed answers only — autosave); allowed only while the attempt is IN_PROGRESS and before the deadline. Returns no content.core.session_token: ********************Authorization: Bearer ********************curl --location --request PATCH '/quiz-attempts/' \
--header 'Content-Type: application/json' \
--data '{
"answers": [
{
"quizQuestionId": "string",
"response": {
"property1": "string",
"property2": "string"
},
"isFlagged": true
}
]
}'{
"success": false,
"message": "string",
"meta": {
"page": 0,
"limit": 0,
"total": 0
},
"errors": [
{
"code": "CR-100001",
"field": "string",
"message": "string"
}
],
"result": null
}