SMS subscription
The Flutter Batch 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.
Here is how to set a phone number with a marketing subscription:
// This requires to have a custom user ID registered
// by calling the `identify` method beforehand.
BatchProfile.instance.newEditor()
.setPhoneNumber("+33123456789") // Null to erase. A valid E.164 phone number.
.setSMSMarketingSubscription(BatchSMSSubscriptionState.subscribed) // or BatchSMSSubscriptionState.unsubscribed
.save();
The phone number must be an E.164 formatted string starting with a +
and not longer than 15 digits without any special characters. It should match the following regular expression : ^\+[0-9]{1,15}$
Last updated
Was this helpful?