6.5 Get Group By Id
#include "BayunCore.h"
Bayun::ShGroupByIdResponse response = bayunCore->groupById("<sessionId>", "<groupId>");
if (response != nullptr) {
std::string groupId = response->getGroupId();
std::string name = response->getName();
Bayun::GroupType type = response->getType();
std::vector<Bayun::ShGroupMember> groupMembers = response->getGroupMembers();
}Last updated