/group/info

To get the group information, including last message, image, name, etc. Has 1 main requirements:

  1. groupId

const groupData = await backend.post('/group/info', {
    groupId: '<Group ID>'
}).then(res => res.data).catch(e => { });

Returns the group information given a groupId. This includes group name, groupId, imageUrl, lastMessage, lastUpdated, and npcId.

Last updated