Request
Body Params application/vnd.api+json
{
"data": {
"type": "AttemptTimerReset",
"attributes": {
"sectionId": "string",
"timeAddedInMins": 0
},
"relationships": {
"attempt": {
"data": {
"id": "FID001",
"type": "Attempt"
}
}
}
}
}
Request Code Samples
curl --location --request POST 'https://api.synap.ac/v3/attempt-timer-resets' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"type": "AttemptTimerReset",
"attributes": {
"sectionId": "string",
"timeAddedInMins": 0
},
"relationships": {
"attempt": {
"data": {
"id": "FID001",
"type": "Attempt"
}
}
}
}
}'
Responses
{
"data": {
"id": "FID001",
"type": "AttemptTimerReset",
"attributes": {
"sectionId": "string",
"timeAddedInMins": 0
},
"relationships": {
"attempt": {
"data": {
"id": "FID001",
"type": "Attempt"
}
}
}
}
}
Modified at 2025-09-15 09:58:55