Issue when trying to pass in "service" (api call) a value from a variable in the "authorization" header

Hello!

I have an issue. Im creating a dialog. In this dialog i have two services:

Service 1: It calls an “authentication” API that provides me two values: jwt and access_token
Setvice 2: I call another API and I need to pass these two values: jwt and access_token

The issue is when configuring service two headers, i have it like this:

jwt → {{context.GetToken22.response.body.jwt}}
Authorization → Bearer {{context.GetToken22.response.body.oauth2.access_token}}

But when I call the second API it seems that the “Authorization” header is passing a wrong value because i get a null response from the API.

When I harcode the values in the call for “jwt” and “access_token” it works.

Can you please advise what is the problem?