提交工单
咨询集成、功能及报价等问题
Kicks one or more specified users out of a room, which will also stop the users from publishing streams to or playing streams from the room.
On the client side, the ZEGO Express SDK will trigger the following callback to notify the kicked-out user of the event:
Platform | ZEGO Express SDK callback |
---|---|
iOS/macOS | onRoomStateChanged |
Android | onRoomStateChanged |
Windows | onRoomStateChanged |
Web | roomStateChanged |
Also, the ZEGO Express SDK will trigger the following callback to notify other users in the same room of the event:
Platform | ZEGO Express SDK callback |
---|---|
iOS/macOS | onRoomUserUpdate |
Android | onRoomUserUpdate |
Windows | onRoomUserUpdate |
Web | roomUserUpdate |
Listed below are the parameters specific to this request and part of the public request parameters. For the complete list of public request parameters, see Server APIs public request parameters.
Parameter | Type | Required | Description |
---|---|---|---|
RoomId |
String |
Yes |
Room ID. |
UserId[] |
Array of String |
Yes |
User IDs of the users to be kicked out. The maximum number of User IDs allowed is 5. Example: UserId[]=a&UserId[]=b |
CustomReason |
String |
No |
Reason of the kick-out. |
https://rtc-api.zego.im/?Action=KickoutUser
&RoomId=123
&UserId[]=a&UserId[]=b
&CustomReason=%E8%B8%A2%E5%87%BA%E7%94%A8%E6%88%B7-%E5%8E%9F%E5%9B%A0
&<Public Request Parameters>
Parameter | Type | Description |
---|---|---|
Code |
Number |
Return code. |
Message |
String |
Description of the request execution result. |
RequestId |
String |
Request ID. |
{
"Code":0,
"Message":"success",
"RequestId":"343649807833778782"
}
Listed below are the return codes related to this API. For the complete list of return codes, see Return codes.
Return code | Possible cause and solution |
---|---|
104 | The room does not exist. (the detection logic is the same as the return codes 5024 and 50001.) Please check the RoomId. |
206 | The rate limit (requests per second) has exceeded the limit. Please adjust the frequency of your requests or contact ZEGOCLOUD technical support. |
5018 | Room status does not match. Please try again later. |
5024 | The room does not exist. (the detection logic is the same as the return codes 104 and 5001.) Please check the RoomId. |
50001 | The room does not exist. (the detection logic is the same as the return codes 104 and 5024.)
|
50002 | User does not exist. Please check the UserId. |
50003 | Failed to query the user's online info. Please check whether the user is online based on the UserId. |
50004 | Failed to read the user info. Please check whether the user is online based on the UserId. |
50009 | Moderation failed. Please try again later or contact ZEGOCLOUD technical support. |
50011 | The number of recipients of the custom message has exceeded the limit. |
50012 | The length of the custom message has exceeded the limit. |
50013 | Failed to send custom messages. Please contact ZEGOCLOUD technical support. |