Unable to use the response objects into message node

Hello ,
I am new to Kore AI and I was trying to build a chatbot.

I am able to fetch the data from API and save the response as well in the service node(FetchConfirmStatus).
However, when I am trying to use response in the message node , its coming blank.

Please find the response below:
{
“statusCode”: 200,
“body”: [
{
“id”: 1,
“fullName”: “Claretta Cunliffe”,
“isConfirm”: true,
“booking_id”: 10
}
],
Response in message node :
{{context.FetchConfirmStatus.response.body.id}}

The Bot message is coming blank. Please help.

Thanks,
Khushboo Yadav

@k.yadav
Since body is an array use body[0].id

Hey Swagat,
Thanks. It worked.