Hello,
I would like to share dynamics 365 crm work order record with a specific team. For that I have created a power automate flow and there I used unbound action to grant access.
And I used the below json to share the record-
{
"Principal": {
"teamid": "97c77852-bfd0-ee11-9078-6045bd143da8",
"@@odata.type": "Microsoft.Dynamics.CRM.team"
},
"AccessMask": "ReadAccess"
}
Once I tried to run the flow I am getting below error:
URL was not parsed due to an ODataUnrecognizedPathException. Resource not found for the segment '{ "Principal": { "teamid": "21e69e02-fd95-eb11-b1ac-000d3a6c4f7d", "@@odata.type": "Microsoft.Dynamics.CRM.team" }, "AccessMask": "ReadAccess" }' provided in the URL.
Please let me know if I am doing any mistake or missing any syntax.
Thanks,