DeleteDeviceToken
public BackendReturnObject DeleteDeviceToken();
Description
Turns off the push message setting. When the push message setting is turned off, push notifications will not arrive even if the BACKND Console uses the push message function.
Example
Synchronous
Backend.iOS.DeleteDeviceToken();
Asynchronous
Backend.iOS.DeleteDeviceToken((callback) =>
{
// Post-process
});
SendQueue
SendQueue.Enqueue(Backend.iOS.DeleteDeviceToken, (callback) =>
{
// Post-process
});
Return cases
Success cases
When the deletion is successful
statusCode : 204