NEO Sessions
Update session participants
PATCH /sessions/{id}
PATCH /sessions/{id}
Add or remove participants from a session. The caller must already be a participant of the session. A future title field is accepted but ignored.
Path parameters
idstringpathrequiredSession ID (client-minted UUIDv4)
Request body
addinteger[]bodyUser ids to add as participants
removeinteger[]bodyUser ids to remove
Request Example
{
"add": [
1
],
"remove": [
1
]
}Responses
200 — Successful operation
Response Example
{
"success": true,
"participants": [
{
"id": 1,
"name": "string"
}
]
}403 — Not a participant of this session
404 — Session not found