Hi,
I created a rest service that will log me in to an external database. This returns a sessionId which I have mapped to a local storage variable. Now, when I go to send subsequent requests, I need to specify this sessionId as a header value in these other rest requests. When I map the sessionId local storage variable to the header value in this next request I need there to be specific text ("Bearer") and a space (" ") before the sessionId value. So the mapped value would need to look something like this: Bearer 123456789
Can you help me understand how to do this when mapping the sessionId local storage variable to the header value in the new request? I'm assuming I have to click on the little JS icon next to the header field and add javascript. Just not sure what that looks like.
Thanks!!