SMS subscription

The Batch Cordova Plugin allows you to:

  • Add and remove phone number from a user profile. The profile will automatically be created if needed.

  • Edit a profile's marketing subscription for the SMS channel.

In order to set a phone number and subscription status on a profile, the creation of a project is required. If no project is set up, any calls made for these actions will be ignored.

Here is how to set a phone number with a marketing subscription:

batch.profile.getEditor()
  .setPhoneNumber("+33123456789") // Null to erase. A valid E.164 phone number.
  .setSMSMarketingSubscription("subscribed") // or "unsubscribed"
  .save();

Last updated