curl --request PATCH \
--url https://app.edpire.com/api/v1/assessments/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"description": "<string>",
"settings": {
"time_limit_minutes": 123,
"passing_score_percent": 123,
"allowed_attempts": 123,
"shuffle_exercises": true,
"show_solutions": "never"
}
}
'