Skip to main content

Callback Before Setting Group Member Information

Function Description

The App business server can use this callback to view the modified group member information.

Precautions

  • To enable the callback, it is necessary to configure the callback URL and activate the corresponding switch for this callback protocol. Configuration methods are detailed in the Callback Explanation document.
  • The direction of the callback is an HTTP/HTTPS POST request initiated by OpenIM Server to the App backend.
  • After receiving the callback request, the App business server must verify whether the command parameter in the request URL is its SDKNAME parameter.
  • The APP business server must respond to this request within the timeout period.

Scenarios That May Trigger This Callback

  • Group administrators modify group member-related information through the client.

Timing of the Callback

  • Before OpenIM Server updates the group member information.

Interface Description

Request URL Example

In the following example, the callback URL configured by the App is https://callbackurl.

https://callbackurl?command=$CallbackCommand&contenttype=json

Request Parameter Description

ParameterDescription
httpsRequest protocol is HTTPS, method is POST
https://callbackurlCallback URL
CallbackCommandFixed value: callbackBeforeSetGroupMemberInfoCommand
contenttypeFixed value: JSON
Header NameExample ValueMandatoryTypeDescription
operationID1646445464564RequiredstringoperationID for global link tracing

Request Packet Example

{
"callbackCommand": "callbackBeforeSetGroupMemberInfo",
"groupID": "12345",
"userID": "user789",
"nickName": "user",
"faceURL": "http://example.com/path/to/face/image.png",
"roleLevel": 20,
"ex": "Extra data"
}

Request Packet Field Explanation

FieldTypeDescription
callbackCommandstringCallback command, here for the callback before setting group member info
groupIDstringUnique identifier of the group
userIDstringID of the user joining the group
nickNamestringNickname of the user joining the group
faceURLstringURL of the group member's icon
roleLevelstringRole level of the user in the group. Normal member (20) or administrator (60)
exstringAdditional data field

Response Packet Example

Allow Modification

{
"actionCode": 0,
"errCode": 0,
"errMsg": "Success",
"errDlt": "",
"nextCode": 0,
"ex": "Some extra data",
"nickName": "user",
"faceURL": "http://example.com/path/to/face/image.png",
"roleLevel": 20
}

Response Packet Field Explanation

FieldValueDescription
actionCode0Indicates if the business system's callback was executed correctly. 0 means the operation was successful.
errCode5001Custom error code, ranging between 5000-9999. Set when actionCode is not 0; set when nextCode is 1.
errMsg"An error message"Simple error message corresponding to the custom error code.
errDlt"Detailed error information"Detailed error information corresponding to the custom error code.
nextCode1Next step instruction, 1 means to refuse to continue executing, set when actionCode is 0.
exstringAdditional data field
nickNamestringNickname of the user joining the group
faceURLstringURL of the group member's icon
roleLevelstringRole level of the user in the group. Normal member (20) or administrator (60)