Skip to main content
Version: 5.7.0

StopListening

Stops the caller from receiving RTT presence updates. Does not affect the broadcasting of their presence updates to other listeners. 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
presenceSTOP_LISTENING

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