Request
Body Params application/vnd.api+jsonRequired
{
"data": {
"type": "StudyItem",
"attributes": {},
"relationships": {
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
},
"quiz": {
"data": {
"id": "FID001",
"type": "Quiz"
}
},
"collection": {
"data": {
"id": "FID001",
"type": "Collection"
}
},
"study": {
"data": {
"id": "FID001",
"type": "Study"
}
}
}
}
}
Request Code Samples
curl --location --request POST 'https://api.synap.ac/v3/study-items' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"type": "StudyItem",
"attributes": {},
"relationships": {
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
},
"quiz": {
"data": {
"id": "FID001",
"type": "Quiz"
}
},
"collection": {
"data": {
"id": "FID001",
"type": "Collection"
}
},
"study": {
"data": {
"id": "FID001",
"type": "Study"
}
}
}
}
}'
Responses
{
"data": {
"id": "FID001",
"type": "StudyItem",
"attributes": {},
"relationships": {
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
},
"quiz": {
"data": {
"id": "FID001",
"type": "Quiz"
}
},
"collection": {
"data": {
"id": "FID001",
"type": "Collection"
}
},
"study": {
"data": {
"id": "FID001",
"type": "Study"
}
}
}
}
}
Modified at 2025-09-30 10:40:38