Skip to main content
PATCH
/
sessions
/
{id}
Update session participants
curl --request PATCH \
  --url https://demo.enneo.ai/api/mind/sessions/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "add": [
    123
  ],
  "remove": [
    123
  ]
}
'
{
  "success": true,
  "participants": [
    {
      "id": 123,
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT-based authentication

Path Parameters

id
string<uuid>
required

Session ID (client-minted UUIDv4)

Body

application/json
add
integer[]

User ids to add as participants

remove
integer[]

User ids to remove

Response

Successful operation

success
boolean
participants
object[]