Manage chat room attributes
This page shows how to manage custom attributes by calling Agora Chat RESTful APIs, including adding, removing, modifying, and retrieving attributes that are stored as key-value maps.
Before calling the following methods, ensure that you understand the call frequency limit of Agora Chat RESTful API calls described in Limitations.
Common parameters
The following table lists common request and response parameters of the Agora Chat RESTful APIs:
Request parameters
Parameter | Type | Description | Required |
---|---|---|---|
host | String | The domain name assigned by the Agora 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 Agora 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 Agora 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 username 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 Agora Chat service. This is the same as org_name . |
application | String | A unique internal ID assigned to each app by the Agora Chat service. You can safely ignore this parameter. |
applicationName | String | The unique identifier assigned to each app by the Agora Chat service. This is the same as app_name . |
uri | String | The request URI. |
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.
Set custom attributes
Adds new custom chat room attributes or modifies existing ones set by the current user.
HTTP request
Path parameter
For the parameters and detailed descriptions, see Common parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Accept | String | application/json | Yes |
Content-Type | String | 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 | Required | Description |
---|---|---|---|
metaData | JSON | Yes | The custom attributes that are stored as a collection of key-value pairs in the format Map<String,String> . Keys in a map are unique attribute names that map to the corresponding attribute values. Note the following limitations:
|
autoDelete | String | No | Whether to automatically delete the custom attributes set by a chat room member when this member leaves the chat room:DELETE : Delete the custom attributes.NO_DELETE : Do not delete the custom attributes. |
HTTP response
Response body
Field | Type | Description |
---|---|---|
data.successKeys | Array | The keys of the custom attributes that are successfully set. |
data.errorKeys | Object | The keys of the custom attributes that fail to be set paired with the corresponding error descriptions. |
For other fields and detailed descriptions, see Common parameters.
Example
Request example
Response example
Retrieve custom attributes
Retrieves the specified custom attributes of a chat room.
HTTP request
Path parameter
For the parameters and detailed descriptions, see Common parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Accept | String | application/json | Yes |
Content-Type | String | 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 | Required | Description |
---|---|---|---|
keys | Array | No | The keys of the custom attributes to retrieve. If you pass an empty array to this parameter, all custom attributes of the specified chat room are returned. |
HTTP response
Response body
Field | Type | Description |
---|---|---|
data | Object | The key-value pairs of the retrieved custom attributes. |
For other fields and detailed descriptions, see Common parameters.
Example
Request example
Response example
Remove custom attributes
Removes custom attributes set by the current user.
HTTP request
Path parameter
For the parameters and detailed descriptions, see Common parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Accept | String | application/json | Yes |
Content-Type | String | 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 | Required | Description |
---|---|---|---|
keys | Array | No | The keys of the custom attributes to remove. |
HTTP response
Response body
Field | Type | Description |
---|---|---|
data.successKeys | Array | The keys of the custom attributes that are successfully removed. |
data.errorKeys | Object | The keys of the custom attributes that fail to be removed paired with the corresponding error descriptions. |
For other fields and detailed descriptions, see Common parameters.
Example
Request example
Response example
Forcibly set custom attributes
In addition to adding new custom attributes or modifying the existing ones set by the current user, this method can also be used to overwrite the custom attributes set by others.
HTTP request
Path parameter
For the parameters and detailed descriptions, see Common parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Accept | String | application/json | Yes |
Content-Type | String | 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 | Required | Description |
---|---|---|---|
metaData | JSON | Yes | The custom attributes that are stored as a collection of key-value pairs in the format Map<String,String> . Keys in a map are unique attribute names that map to the corresponding attribute values. Note the following limitations:
|
autoDelete | String | No | Whether to automatically delete the custom attributes set by a chat room member when this member leaves the chat room:DELETE : Delete the custom attributes.NO_DELETE : Do not delete the custom attributes. |
HTTP response
Response body
Field | Type | Description |
---|---|---|
data.successKeys | Array | The keys of the custom attributes that are successfully set. |
data.errorKeys | Object | The keys of the custom attributes that fail to be set paired with the corresponding error descriptions. |
For other fields and detailed descriptions, see Common parameters.
Example
Request example
Response example
Forcibly remove custom attributes
In addition to removing the custom attributes set by the current user, this method can also be used to remove custom attributes set by others.
HTTP request
Path parameter
For the parameters and detailed descriptions, see Common parameters.
Request header
Parameter | Type | Description | Required |
---|---|---|---|
Accept | String | application/json | Yes |
Content-Type | String | 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 | Required | Description |
---|---|---|---|
keys | Array | No | The keys of the custom attributes to remove. |
HTTP response
Response body
Field | Type | Description |
---|---|---|
data.successKeys | Array | The keys of the custom attributes that are successfully removed. |
data.errorKeys | Object | The keys of the custom attributes that fail to be removed paired with the corresponding error descriptions. |
For other fields and detailed descriptions, see Common parameters.
Example
Request example
Response example
Status codes
For details, see HTTP Status Codes.