You are not logged in.
DeleteAttendees
This API is used to remove participants in a meeting.
Name | Type | IN | Mandatory | Description |
---|---|---|---|---|
X-Conference-Authorization | string | header | Yes | Meeting control token, which is obtained through the API for [obtaining a meeting control token]. |
conferenceID | string | query | Yes | Meeting ID. |
Name | Type | Mandatory | Description |
---|---|---|---|
bulkDelAttendInfo | Array of DelAttendInfo objects | Yes | List of participants to remove. |
Name | Type | Mandatory | Description |
---|---|---|---|
number | string | Yes | Participant number. |
participantID | string | No | Participant ID. This parameter is mandatory for participants who have joined the meeting. |
Operation successful.
Server internal error.
Name | Type | Description |
---|---|---|
error_code | string | error code.
|
error_msg | string | error message. |
"POST https://{endpoint}/v1/mmc/control/conferences/attendees/delete?conferenceID=914067448"
{
"bulkDelAttendInfo": [
{
"number": "991116006724",
"participantID": "54f20ff253d911eab6b79d47d172efc4"
}
]
}
Server internal error.
{
"error_code": "MMC.111072065",
"error_msg": "CONF_NOT_FOUND_OR_AUTH_FAILED"
}