Skip to main content
Version: 5.7.0

DeleteGroupEntity

Delete an entity in the group.

ServiceOperation
groupDELETE_GROUP_ENTITY

Method Parameters

ParameterDescription
groupIdID of the group
entityIdID of the entity.
versionThe current version of the group entity (for concurrency checking).

Usage

http://localhost:3000
string groupId = "a-group-id";
string entityId = "a-group-entity-id";
int version = 3;
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.DeleteGroupEntity(groupId, entityId, version, successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": null
}