Skip to main content
Version: 5.7.0

CancelGroupInvitation

Cancel an outstanding invitation to the group.

ServiceOperation
groupCANCEL_GROUP_INVITATION

Method Parameters

ParameterDescription
groupIdID of the group
profileIdProfile ID of user whos invitation is being deleted.

Usage

http://localhost:3000
string groupId = "a-group-id";
string profileId = "a-profile-id";
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.CancelGroupInvitation(groupId, profileId, successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": null
}