Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Henrik_Stahlberg
Contributor
Contributor

REST request body dealing with +

Hi

I have a request body that contains

 

let vBody = {

"phoneNumber": [

"+1111111",

"+2222222",

...]

}

 

The request works when I use it in the connector but when I set it as a variable and use it in WITH CONNECT it fails in parsing the + sign correctly.

Labels (2)
1 Solution

Accepted Solutions
Henrik_Stahlberg
Contributor
Contributor
Author

Ok figured it out

replaced + with '&char(43)&' and it works.

"+111111"

with

"'&char(44)&'111111"

View solution in original post

1 Reply
Henrik_Stahlberg
Contributor
Contributor
Author

Ok figured it out

replaced + with '&char(43)&' and it works.

"+111111"

with

"'&char(44)&'111111"