Skip to main content
POST
/
liveai
/
sessions
/
{session_id}
/
leave-meeting
Leave third party meeting platform
curl --request POST \
  --url https://lemonslice.com/api/liveai/sessions/{session_id}/leave-meeting \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "meeting_bot_id": "meeting-bot-abc123"
}
'
{
  "status": "left"
}

Authorizations

X-API-Key
string
header
required

Your LemonSlice API token.

Path Parameters

session_id
string
required

The ID of the LemonSlice session associated with the third party meeting platform.

Body

application/json
meeting_bot_id
string
required

The third party meeting platform ID returned by the join-meeting endpoint.

Example:

"meeting-bot-abc123"

Response

Avatar removed from the third party meeting platform.

status
string
required

Confirmation that the avatar has left the third party meeting platform.

Allowed value: "left"