Add Note Collaborating Users
Add users as collaborators to this note. The request body should contain an array of User resource identifier objects.
Request
Body Params application/vnd.api+json
{
"data": [
{
"id": "FID001",
"type": "User"
}
]
}
Request Code Samples
curl --location --request POST 'https://api.synap.ac/v3/notes//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