GET request is not working

Input object:
msg.payload : {"object":"page","entry":[{"id":"463445907732883","time":1557422097573,"messaging":[{"recipient":{"id":"463445907732883"},"timestamp":1557422097573,"sender":{"id":"2091862310930299"},"postback":{"payload":"pcmcat142400050019","title":"BISSELL Carpet Clean..."}}]}]}

Get request is not working in http request node.

https://api.bestbuy.com/v1/products(categoryPath.id={{{msg.payload.entry[0].messaging[0].postback.payload}}})?apiKey=***&format=json

Property - (categoryPath.id={{{msg.payload.entry[0].messaging[0].postback.payload}}}) is not working

Could you help me please?

mustache syntax uses the dot notation even for index into array - and our basic templating assumes the msg so I suspect

(categoryPath.id={{{payload.entry.0.messaging.0.postback.payload}}})

may have a better chance of working but I don't have an API key to test

1 Like

Thank you. It's working )))