SMS subscription
The Android Batch SDK 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.editor { editor in
try? editor.setPhoneNumber("+33123456789") // Nil to erase. A valid E.164 phone number.
editor.setSMSMarketingSubscriptionState(.subscribed) // or .unsubscribed
// If you prefer to use BatchProfile.editor() with local variable instead of using a closure,
// remember to use editor.save() afterwards so that the changes are taken into account.
}// This requires to have a custom user ID registered by calling the `identify` method beforehand.
[BatchProfile editWithBlock:^(BatchProfileEditor * _Nonnull editor) {
NSError *error = nil;
[editor setPhoneNumber:@"+33123456789" error:&error]; // Nil to erase. A valid E.164 phone number.
[editor setSMSMarketingSubscriptionState:BatchSMSSubscriptionStateSubscribed]; // or BatchSMSSubscriptionStateUnsubscribed
// If you prefer to use [BatchProfile editor] instead of `editWithBlock`,
// remember to use [editor save] afterwards so that the changes are taken into account.
}];Note:
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}$Remember if you call
editormethod beforestartWithAPIKeyit will return nil. You should always call it after you started the SDK, and check nullity to be safe.
Last updated

