Request
Body Params application/vnd.api+json
{
"data": {
"type": "Highlight",
"attributes": {
"collectionItemId": "string",
"color": "string",
"range": "string",
"summary": "string"
},
"relationships": {
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
}
}
}
}
Request Code Samples
curl --location --request POST 'https://api.synap.ac/v3/highlights' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": {
"type": "Highlight",
"attributes": {
"collectionItemId": "string",
"color": "string",
"range": "string",
"summary": "string"
},
"relationships": {
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
}
}
}
}'
Responses
{
"data": {
"id": "FID001",
"type": "Highlight",
"attributes": {
"collectionItemId": "string",
"color": "string",
"range": "string",
"summary": "string"
},
"relationships": {
"owner": {
"data": {
"id": "FID001",
"type": "User"
}
}
}
}
}
Modified at 2025-09-15 09:58:55