Skip to main content
Version: 5.7.0

UpdateGroupEntityData

Update the data for a group entity . Optional parameters: jsonData (will clear data if not provided)

This method is affected by versioning. See the versioning documentation for more information.

ServiceOperation
groupUPDATE_GROUP_ENTITY_DATA

Method Parameters

ParameterDescription
groupIdID of the group
entityIdThe id of the entity to update
versionVersion to verify
jsonDataData to apply

Usage

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