Skip to main content

Callback After Creating Group

Functional Description

After a successful operation, the business server can perform necessary data synchronization or other business logic processing through this callback.

Precautions

  • To enable the callback, you must configure the callback URL and turn on the switch corresponding to this callback protocol. See the Callback Description document for configuration methods.
  • The callback direction is an HTTP/HTTPS POST request initiated by IMServer to the business server.
  • The business server must respond to this request within the timeout period.

Scenarios That May Trigger This Callback

  • After users perform corresponding operations successfully through the client or APP administrators through REST API.

Timing of Callback

  • After creating a group.

Interface Description

Request URL Example

Here CallbackCommand is: callbackAfterCreateGroupCommand

{WEBHOOK_ADDRESS}/callbackAfterCreateGroupCommand?contenttype=json

Request Package Example

{
"callbackCommand": "callbackAfterCreateGroupCommand",
"groupID": "12345",
"groupName": "MyGroup",
"notification": "Welcome to MyGroup!",
"introduction": "This is a group for discussing example topics.",
"faceURL": "http://example.com/path/to/face/image.png",
"ownerUserID": "user123",
"createTime": 1673048592000,
"memberCount": 10,
"ex": "Extra data",
"status": 1,
"creatorUserID": "user123",
"groupType": 1,
"needVerification": 1,
"lookMemberInfo": 1,
"applyMemberFriend": 0,
"notificationUpdateTime": 1673048592000,
"notificationUserID": "user456",
"initMemberList": [
{
"userID": "user789",
"roleLevel": 60
},
{
"userID": "user101112",
"roleLevel": 20
}
]
}

Request Package Field Description

ObjectTypeDescription
callbackCommandstringCallback command, here it is the callback after creating a group
groupIDstringUnique identifier of the group
groupNamestringName of the group
notificationstringNotification info of the group
introductionstringIntroduction of the group
faceURLstringURL of the group's icon
ownerUserIDstringUser ID of the group owner
createTimeint64Timestamp of group creation (milliseconds)
memberCountuint32Number of group members
exstringExtra data field
statusint32Status of the group
creatorUserIDstringUser ID of the group creator
groupTypeint32Group type, fixed as 2.
needVerificationint32Whether verification is needed to join the group
lookMemberInfoint32Whether member info can be viewed
applyMemberFriendint32Whether members can be applied as friends
notificationUpdateTimeint64Timestamp of group notification update (milliseconds)
notificationUserIDstringUser ID who updated the group notification
initMemberListarrayList of initial group members, including userID and roleLevel sub-fields
initMemberList.userIDstringUser ID of the initial member
initMemberList.roleLevelint32Role level of the initial member

Response Package Example

After the App backend synchronizes data, it sends a callback response package.

{
"actionCode": 0,
"errCode": 0,
"errMsg": "",
"errDlt": "",
"nextCode": 1
}

Response Package Field Description

FieldValueDescription
actionCode0Indicates whether the business system callback was executed correctly. 0 means the operation was successful.
errCode0Custom error code, 0 here means ignore the callback result.
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 execution instruction, 1 means refusing to continue execution, set when actionCode is 0.