Skip to main content
Version: 6.0.0

GetMyGroups

Retrieve group information about the groups in which the current user is a member.

ServiceOperation
groupGET_MY_GROUPS

Usage

http://localhost:3000
SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.Group.GetMyGroups(successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": {
"requested": [],
"invited": [],
"groups": [
{
"groupType": "group1",
"groupId": "55e701b7-6230-4536-9dfb-47f74524a09e",
"memberCount": 2,
"name": "myGroupName",
"invitedPendingMemberCount": 0,
"requestingPendingMemberCount": 0,
"ownerId": "d6c6c182-1e10-48c8-8484-f1e6b1b8c519",
"version": 2,
"summaryData": {},
"isOpenGroup": true
}
]
}
}