I'm using Azure Logic Apps to call out to the Microsoft Graph API using the HTTP - HTTP
action. For this API I need to execute a POST request with the following body:
{
"@odata.id": "<guid>"
}
When I try to save the Logic App, this error shows:
Failed to save logic app <redacted>. The template validation failed: 'The template action '<redacted>' at line '1' and column '144589' is not valid: "Unable to parse template language expression 'odata.id': expected token 'LeftParenthesis' and actual 'Dot'.".'.
How can I use this attribute in my JSON payload?
EDIT: as requested, a screenshot of the part of the Logic App that generates the error on Saving.