I am using call
https://services.odata.org/V3/Northwind/Northwind.svc/Customers('ALFKI')?$format=json
I am logging the response and I see values
log the responseVariable {"odata.metadata":"https:\/\/services.odata.org\/V3\/Northwind\/Northwind.svc\/$metadata#Customers\/@Element&$select=ContactName,CompanyName","CompanyName":"Alfreds Futterkiste","ContactName":"Maria Anders"}
next line in workflow i try to set value from dictionary using d/ContactName from the responseVariable (dictionary) and set to string but there is no value
tried using d/results[0]/ContactName as well nothing returned

