Remove a participant from a meeting
DELETE/v1/meetings/:meeting_id/participants/:participant_id
Remove a participant from a meeting. If the meeting is already running, the participant will be removed from the meeting and unable to rejoin.
Request
Path Parameters
meeting_id stringrequired
Meeting ID
participant_id stringrequired
Participant ID
- application/json
Body
required
reason string
Default value: An Administrator disconnected you from the meeting
Reason sent to the client explaining why they were removed
Responses
- 200
- 304
- 401
- 403
- 404
Participant was successfully removed
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
meeting_id stringrequired
status required
Possible values: [ready
, joined
, left
, removed
]
created_at date-timerequired
updated_at date-timerequired
{
"id": "abcdefghijklmnopqrstuvwxyz",
"meeting_id": "abcdefghijklmnopqrstuvwxyz",
"created_at": "2024-04-09T08:49:18.744Z",
"updated_at": "2024-04-09T08:49:18.744Z"
}
Participant was already removed
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Resource not found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Loading...