Hi,
I am working with Swift to integrate User Registration login with PhoneNumber with Twilio.
let user = BackendlessUser()
user.properties[“phoneNumber”] = phoneWithCode
Backendless.shared.userService.registerUser(user: user,
responseHandler: { user in
}
When i call the registerUser api user gets added to db without any OTP validation.
Also I noticed the user object don’t have any attribute with transactionId as mentioned in the docs.
Note: I have a valid trail Twilio account and paid plan with Backendless.
Your assistance is much appreciated.