Request
Body Params application/vnd.api+jsonRequired
{
"data": {
"type": "SynopticSession",
"attributes": {},
"relationships": {
"attempt": {
"data": {
"id": "FID001",
"type": "Attempt"
}
},
"candidate": {
"data": {
"id": "FID001",
"type": "User"
}
}
}
}
}
Request Code Samples
curl --location --request POST 'https://api.synap.ac/v3/synoptic-sessions' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"type": "SynopticSession",
"attributes": {},
"relationships": {
"attempt": {
"data": {
"id": "FID001",
"type": "Attempt"
}
},
"candidate": {
"data": {
"id": "FID001",
"type": "User"
}
}
}
}
}'
Responses
{
"data": {
"id": "FID001",
"type": "SynopticSession",
"attributes": {
"id": "string",
"token": "string"
},
"relationships": {
"attempt": {
"data": {
"id": "FID001",
"type": "Attempt"
}
},
"candidate": {
"data": {
"id": "FID001",
"type": "User"
}
}
}
}
}
Modified at 2026-03-24 08:18:55