@nehamsheikh @yogaramya.mendu
We recommend using encodeURIcomponent to fully encode the URL if needed.
- Construct the API end point and query parameters dynamically in a script node.
- Encode the content fully in a context variable in that script node.
var encodedURL = encodeURIComponent("https://abc.com/endpoint?q=[abc_def]);
context.encodedURLToUseInServiceNode = encodedURL - Use the context variable in the service node
GET/POST{{context.encodedURLToUseInServiceNode}}
configure the headers, auth profile and rest of the settings as needed.