Request
Body Params application/vnd.api+json
{
"data": {
"id": "FID001",
"type": "AttemptLock",
"attributes": {},
"relationships": {
"attempt": {
"data": {
"id": "FID001",
"type": "Attempt"
}
}
}
}
}
Request Code Samples
curl --location --request PATCH 'https://api.synap.ac/v3/attempt-locks/' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"id": "FID001",
"type": "AttemptLock",
"attributes": {},
"relationships": {
"attempt": {
"data": {
"id": "FID001",
"type": "Attempt"
}
}
}
}
}'
Responses
{
"data": {
"id": "FID001",
"type": "AttemptLock",
"attributes": {},
"relationships": {
"attempt": {
"data": {
"id": "FID001",
"type": "Attempt"
}
}
}
}
}
Modified at 2025-09-15 09:59:10