Hello,
I have this code
notifications_api = session.get_notifications()
subscriber = SubscriberDto(
subscriber_id=body.user_id,
phone=body.phone
)
await notifications_api.update_subscriber(subscriber)
# Do something temporary with the number
subscriber = SubscriberDto(
subscriber_id=body.user_id,
phone=None
)
await notifications_api.update_subscriber(subscriber)
It works fine, however instead of deleting the phone, it deletes the email. I don't think that is how it supposed to have worked.