MoEngageSDKCore

@objc
public class MoEngageSDKCore : NSObject
  • Declaration

    Swift

    @objc
    public static let sharedInstance: MoEngageSDKCore

Register Flow

UnRegister Flow

  • UnRegister the User

    Note

    This API should be called only if user is registered successfully at some point using registerUser

    Declaration

    Swift

    @objc
    public func unregisterUser(data: String, completionHandler: @escaping UserRegistrationHandler)

    Parameters

    data

    JWT token

    completionHandler

    returns the status of Unregistration data

  • UnRegister the User for Secondary instance

    Note

    This API should be called only if user is registered successfully at some point using registerUser

    Declaration

    Swift

    @objc
    public func unregisterUser(data: String, appId: String? = nil, completionHandler: @escaping UserRegistrationHandler)

    Parameters

    data

    JWT token

    appId

    MoEngage Account identifier

    completionHandler

    returns the status of Unregistration data

Other