Remove SCORM Course Collaborating Users
Remove users as collaborators from this SCORM course. The request body should contain an array of User resource identifier objects to remove.
Request
Body Params application/vnd.api+json
{
"data": [
{
"id": "FID001",
"type": "User"
}
]
}
Request Code Samples
curl --location --request DELETE 'https://api.synap.ac/v3/scorm-courses//relationships/collaborating-users' \
--header 'Content-Type: application/vnd.api+json' \
--data-raw '{
"data": [
{
"id": "FID001",
"type": "User"
}
]
}'
Responses
This response does not have a body.
Modified at 2026-03-10 08:19:31