Skip to main content
Version: 5.7.0

ForcePush

Force an RTT presence update to all listeners of the caller. Note that Real-time Tech(RTT) updates must be enabled in order for this API call to work (see Messaging > Presence in the portal).

ServiceOperation
presenceFORCE_PUSH

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.PresenceService.ForcePush(successCallback, failureCallback);
JSON Response
{
"data": null,
"status": 200
}