Create, delete, and retrieve chat groups
Upon login to the Chat, you can create, modify, or delete a chat group.
This page shows how to create, retrieve, modify, and delete a group by calling Chat RESTful APIs. Before calling the following methods, ensure that you understand the call frequency limit described in Limitations.
Common parameters
The following table lists common request and response parameters of the Chat RESTful APIs:
Request parameters
Parameter | Type | Description | Required |
---|---|---|---|
host | String | The domain name assigned by the Chat service to access RESTful APIs. For how to get the domain name, see Get the information of your project. | Yes |
org_name | String | The unique identifier assigned to each company (organization) by the Chat service. For how to get the org name, see Get the information of your project. | Yes |
app_name | String | The unique identifier assigned to each app by the Chat service. For how to get the app name, see Get the information of your project. | Yes |
username | String | The unique login account of the user. The user ID must be 64 characters or less and cannot be empty. The following character sets are supported:
| Yes |
Response parameters
Parameter | Type | Description |
---|---|---|
action | String | The request method. |
organization | String | The unique identifier assigned to each company (organization) by the Chat service. This is the same as org_name . |
application | String | A unique internal ID assigned to each app by the Chat service. You can safely ignore this parameter. |
applicationName | String | The unique identifier assigned to each app by the Chat service. This is the same as app_name . |
uri | String | The request URI. |
path | String | The request path, which is part of the request URI. You can safely ignore this parameter. |
entities | JSON | The response entity. |
data | JSON | The details of the response. |
timestamp | Number | The Unix timestamp (ms) of the HTTP response. |
duration | Number | The duration (ms) from when the HTTP request is sent to the time the response is received. |
Authorization
Chat RESTful APIs require Bearer HTTP authentication. Every time an HTTP request is sent, the following Authorization
field must be filled in the request header:
In order to improve the security of the project, Agora uses a token (dynamic key) to authenticate users before they log in to the chat system. Chat RESTful APIs only support authenticating users using app tokens. For details, see Authentication using App Token.
Creating a group
Creates a new chat group and sets the group information. The group information includes the chat group name, description, whether the group is public or private, the maximum number of chat group members (including the group owner), whether a user requesting to join the group requires approval, the group owner, and group members.
HTTP request
Path parameter
For the descriptions of other path parameters, see Common Parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Content-Type | String | The content type. Set it as application/json . | Yes |
Accept | String | The content type. Set it as application/json . | Yes |
Authorization | String | The authentication token of the user or administrator, in the format of Bearer ${token} , where Bearer is a fixed character, followed by an English space, and then the obtained token value. | Yes |
Request body
Parameter | Type | Description | Required |
---|---|---|---|
groupname | String | The group name. It cannot exceed 128 characters. The group name cannot contain "/" or spaces. You can use "+" to represent the space. | Yes |
desc | String | The group description. It cannot exceed 512 characters. The group name cannot contain "/" or spaces. You can use "+" to represent the space. | Yes |
public | Boolean | Whether the group is a public group. Public groups can be searched and chat users can apply to join a public group. Private groups cannot be searched, and chat users can join a private group only if the group owner or admin invites the user to join the group.
| Yes |
maxusers | String | The maximum number of chat group members (including the group owner). The default value is 200 and the maximum value is 2000. The upper limit varies with your price plans. For details, see Pricing Plan Details. | No |
allowinvites | Boolean | Whether a regular group member is allowed to invite other users to join the chat group.
| No |
membersonly | Boolean | Whether the user requesting to join the public group requires approval from the group owner or admin:
| No |
owner | String | The chat group owner. | Yes |
members | Array | Regular chat group members. This chat group member array does not contain the group owner. If you want to set this field, you can enter 1 to 100 elements in this array. | No |
custom | String | The extension information of the chat group. The extension information cannot exceed 1024 characters. | No |
HTTP response
Response body
If the returned HTTP status code is 200, the request succeeds, and the data field in the response body contains the following parameters.
Parameter | Type | Descriptions |
---|---|---|
groupid | String | The group ID. |
For other fields and descriptions, see Common parameters.
If the returned HTTP status code is not 200, the request fails. You can refer to Status code table for possible causes.
Example
Request example
Response example
Banning a chat group
Bans the specified chat group. Groups are typically banned when too many users or messages violate community guidelines.
Once a chat group is banned, the chat group members in the group can no longer send or receive messages, and the owner and admins cannot perform supervisory operations.
HTTP request
Path parameter
For the descriptions of other path parameters, see Common Parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Content-Type | String | The content type. Set it as application/json . | Yes |
Accept | String | The content type. Set it as application/json . | Yes |
Authorization | String | The authentication token of the user or administrator, in the format of Bearer ${token} , where Bearer is a fixed character, followed by an English space, and then the obtained token value. | Yes |
HTTP response
Response body
If the returned HTTP status code is 200
, the request succeeds, and the data
field in the response body contains the following parameters:
Parameter | Type | Description |
---|---|---|
disabled | Bool | Whether the chat group is banned:true : Yes.false : No. |
For other fields and descriptions, see Common parameters.
If the returned HTTP status code is not 200
, the request fails. You can refer to Status code for possible causes.
Example
Request example
Response example
Unbanning a chat group
Lifts a ban on the specified chat group.
After unbanning a chat group, all chat group members regain permission to send and receive messages in the group, and the owner and admins regain the privileges necessary to perform supervisory operations.
HTTP request
Path parameter
For the descriptions of other path parameters, see Common Parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Content-Type | String | The content type. Set it as application/json . | Yes |
Accept | String | The content type. Set it as application/json . | Yes |
Authorization | String | The authentication token of the user or administrator, in the format of Bearer ${token} , where Bearer is a fixed character, followed by an English space, and then the obtained token value. | Yes |
HTTP response
If the returned HTTP status code is 200
, the request succeeds, and the data
field in the response body contains the following parameters:
Parameter | Type | Description |
---|---|---|
disabled | Bool | Whether the chat group is banned:true : Yes.false : No. |
For other fields and descriptions, see Common parameters.
If the returned HTTP status code is not 200
, the request fails. You can refer to Status code for possible causes.
Example
Request example
Response example
Retrieving group details
Retrieves the detailed information of one or more groups. If you specify multiple groups, details of the existing groups are returned. If the specified groups do not exist, "group id doesn't exist" is reported.
HTTP request
Path parameter
Parameter | Type | Description | Required |
---|---|---|---|
group_ids | String | The ID of the group whose details you want to retrieve. You can type one or more group IDs that are separated with the comma (,). | Yes |
For other parameters and detailed descriptions, see Common parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Accept | String | The parameter type. Set it as application/json . | Yes |
Authorization | String | The authentication token of the user or administrator, in the format of Bearer ${token} , where Bearer is a fixed character, followed by an English space, and then the obtained token value. | Yes |
HTTP response
Response body
If the returned HTTP status code is 200, the request succeeds, and the data field in the response body contains the following parameters.
Parameter | Type | Descriptions |
---|---|---|
id | String | The group ID. The group's unique identifier. |
name | String | The group name. |
description | String | The group description. |
membersonly | Boolean | Whether a user requesting to join the group requires the approval from the group owner or admin:
|
allowinvites | Boolean | Whether a regular chat group member can invite other users to join the group.
|
maxusers | Number | The maximum number of members (including the group owner) allowed in the chat group. |
owner | String | The username of the group owner, for example, {"owner":"user1"} . |
created | Long | The Unix timestamp for creating the chat group. |
affiliations_count | Number | The total number of the chat group members. |
disabled | Bool | Whether the chat group is banned:true : Yes.false : No. |
affiliations | Array | The list of existing group members, including the group owner and regular group members, for example, [{"owner":"user1"},{"member":"user2"},{"member":"user3"}] . |
public | Boolean | Whether the chat group is a public group.
|
custom | String | The extension information of the chat group. |
For other parameters and detailed descriptions, see Common parameters.
If the returned HTTP status code is not 200, it means the request fails. You can refer to status code for possible causes.
Example
Request example
Response example
Modifying group information
Modifies the chat group information. You can modify the groupname
, description
, maxusers
, membersonly
, allowinvites
, public
, invite_need_confirm
, and custom
fields. If you pass in fields that cannot be modified or do not exist in the request, an error is reported.
HTTP request
Path parameter
Parameter | Type | Description | Required |
---|---|---|---|
group_id | String | The group ID. | Yes |
For other parameters and detailed descriptions, see Common parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Content-Type | String | The parameter type. Set it as application/json . | Yes |
Accept | String | The parameter type. Set it as application/json . | Yes |
Authorization | String | The authentication token of the user or administrator, in the format of Bearer ${token} , where Bearer is a fixed character, followed by an English space, and then the obtained token value. | Yes |
Request body
Parameter | Type | Description | Required |
---|---|---|---|
groupname | String | The group name. It cannot exceed 128 characters. The group name cannot contain "/" or spaces. You can use "+" to represent the space. | Yes |
description | String | The group description. It cannot exceed 512 characters. The group name cannot contain "/" or spaces. You can use "+" to represent the space. | Yes |
maxusers | String | The maximum number of chat group members (including the group owner). The default value is 200 and the maximum value is 2000. The upper limit varies with your price plans. For details, see Pricing Plan Details. | No |
allowinvites | Boolean | Whether a regular chat group member can invite other users to join the group.
| No |
membersonly | Boolean | Whether the user requesting to join the public group requires approval from the group owner or admin:
| No |
custom | String | The extension information of the chat group. The extension information cannot exceed 1024 characters. | No |
invite_need_confirm | Boolean | Whether the invitee needs to accept the group invitation before joining the group:
| No |
public | Boolean | Whether the group is a public one:
| Yes |
HTTP response
Response body
If the returned HTTP status code is 200, the request succeeds, and the data field in the response body contains the following parameters.
Parameter | Type | Descriptions |
---|---|---|
groupname | String | The group name. |
description | String | The group description. |
membersonly | Boolean | Whether a user requesting to join the group requires the approval from the group owner or admin:
|
allowinvites | Boolean | Whether a regular group member can invite other users to join the group.
|
maxusers | Number | The maximum number of chat group members (including the group owner. |
For other fields and descriptions, see Common parameters.
If the returned HTTP status code is not 200, the request fails. You can refer to Status code for possible causes.
Example
Request example
Response example
Deleting a chat group
Deletes the specified chat group. Once a chat group is deleted, all the threads in this chat group are deleted as well.
HTTP request
Path parameter
Parameter | Type | Description | Required |
---|---|---|---|
group_id | String | The group ID. | Yes |
For other parameters and detailed descriptions, see Common parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Accept | String | The parameter type. Set it as application/json . | Yes |
Authorization | String | The authentication token of the user or administrator, in the format of Bearer ${token} , where Bearer is a fixed character, followed by an English space, and then the obtained token value. | Yes |
HTTP response
If the returned HTTP status code is 200, the request succeeds, and the data
field in the response body contains the following parameters.
Parameter | Type | Description |
---|---|---|
success | Boolean | The result of this method: |
groupid | String | The group ID to be deleted. |
For other fields and descriptions, see Common parameters.
If the returned HTTP status code is not 200, the request fails. You can refer to Status code for possible causes.
Example
Request example
Response example
Retrieving all chat groups
Retrieves all the chat groups under the app.
HTTP request
Path parameter
For other parameters and detailed descriptions, see Common parameters.
Query parameter
Parameter | Type | Description | Required |
---|---|---|---|
limit | Number | The number of chat groups to retrieve per page. The default value is 10 . The value range is [1,100]. | No |
cursor | String | The start position for the next query. | No |
limit
and cursor
parameters are not specified, the basic information of 10 chat groups on the first page is returned by default.Request header
Parameter | Type | Description | Required |
---|---|---|---|
Accept | String | The parameter type. Set it as application/json . | Yes |
Authorization | String | The authentication token of the user or administrator, in the format of Bearer ${token} , where Bearer is a fixed character, followed by an English space, and then the obtained token value. | Yes |
HTTP response
Response body
If the returned HTTP status code is 200, the request succeeds, and the data
field in the response body contains the following parameters.
Parameter | Type | Description |
---|---|---|
owner | String | The username of the group owner, for example, {"owner":"user1"} . |
groupid | String | The group ID. |
affiliations | Number | The number of existing group members. |
type | String | The group type. |
last_modified | String | When the group information was last modified, in milliseconds. |
groupname | String | The group name. |
count | Number | The number of groups that are returned. |
cursor | String | The current page number. |
For other fields and descriptions, see Common parameter.
If the returned HTTP status code is not 200, the request fails. You can refer to Status code for possible causes.
Example
Request example
Response example
Retrieving all the chat groups a user joins
Retrieves all the chat groups that a user joins.
HTTP request
Path parameter
For the descriptions of path parameters of this method, see Common parameters.
Query parameter
Parameter | Type | Description | Required |
---|---|---|---|
pagesize | String | The number of chat groups to retrieve per page. The default value is 10 . The value range is [1,100]. | No |
pagenum | String | The start position for the next query. | No |
pagesize
and pagenum
parameters are not specified, the basic information of 10 chat groups on the first page is returned by default.Request header
Parameter | Type | Description | Required |
---|---|---|---|
Accept | String | The parameter type. Set it as application/json . | Yes |
Authorization | String | The authentication token of the user or administrator, in the format of Bearer ${token} , where Bearer is a fixed character, followed by an English space, and then the obtained token value. | Yes |
HTTP response
Response body
If the returned HTTP status code is 200, the request succeeds, and the data
field in the response body contains the following parameters.
Parameter | Type | Description |
---|---|---|
groupid | String | The group ID. |
groupname | String | The group name. |
For other fields and descriptions, see Common parameter.
If the returned HTTP status code is not 200, the request fails. You can refer to status code for possible causes.
Example
Request example
Response example
Status codes
For details, see HTTP Status Code.