Request
Body Params application/vnd.api+jsonRequired
{
"data": {
"id": "FID001",
"type": "PlayerAttempt",
"attributes": {
"timeStarted": "string",
"timeCompleted": "string",
"examStatus": "enrolled",
"status": "completed"
},
"relationships": {
"test": {
"data": {
"id": "FID001",
"type": "Test"
}
},
"exam": {
"data": {
"id": "FID001",
"type": "Exam-V-2"
}
},
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
},
"audioInstructions": {
"data": {
"id": "FID001",
"type": "File"
}
},
"responses": {
"data": [
{
"id": "FID001",
"type": "PlayerAudioResponse"
}
]
},
"sections": {
"data": [
{
"id": "FID001",
"type": "PlayerSection"
}
]
}
}
}
}
Request Code Samples
curl --location --request PATCH 'https://api.synap.ac/v3/player-attempts/' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"id": "FID001",
"type": "PlayerAttempt",
"attributes": {
"timeStarted": "string",
"timeCompleted": "string",
"examStatus": "enrolled",
"status": "completed"
},
"relationships": {
"test": {
"data": {
"id": "FID001",
"type": "Test"
}
},
"exam": {
"data": {
"id": "FID001",
"type": "Exam-V-2"
}
},
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
},
"audioInstructions": {
"data": {
"id": "FID001",
"type": "File"
}
},
"responses": {
"data": [
{
"id": "FID001",
"type": "PlayerAudioResponse"
}
]
},
"sections": {
"data": [
{
"id": "FID001",
"type": "PlayerSection"
}
]
}
}
}
}'
Modified at 2025-09-30 10:40:38