Passing data between 2 service node

Hi,

I need to feed the response of service node 1 as request parameter in service node 2 APi request.
I just passed request parameter for service node 2 as- {{context.serviceNode001.response.body.access_token}}
But getting error as response is undefined.

@kapil_nandwana
It is possible to pass the output/part of it to another service node.
First, for debugging, what I suggest is that temporarily you have a message node to print the output of service node 1
print(JSON.stringify(context.serviceNode001.response));
Then, based on the output, you will be able to figure out what you need to pass on to the next service node.

Service Node 1

Service Node 2

Output