I am receiving data from a webhook, the body is below.
The issue we’re having is when referencing the collection called Parameters inside Make, {{1.Parameters.Action}} works fine, but {{1.Parameters.Document.Id}} does not work, nothing is returned.
We believe that the name “Document.Id” (with the dot) is the problem.
How can I reference this object in the collection using [ ] (brackets) instead of dot notation so that Make can get the data correctly?
Body:
{
“AccountId”:“123456”,
“MessageType”:“Invoice”,
“Parameters”:{
“Document.Id”:87654321,
“Action”:“Created”
}
}