I’m not sure if I understood, but perhaps what you are looking for is to encode the uri with encodeURIComponent:
context: {
mobile: encodeURIComponent(phoneNumber)
}
phoneNumber “+5545999999999” will become: “%2B5545999999999”
I’m not sure if I understood, but perhaps what you are looking for is to encode the uri with encodeURIComponent:
context: {
mobile: encodeURIComponent(phoneNumber)
}
phoneNumber “+5545999999999” will become: “%2B5545999999999”