Hi,
I'm writing a flow to list all the notes (annotations) of a quote record. It's failing with this error:
Could not find a property named 'ObjectId' on type 'Microsoft.Dynamics.CRM.annotation'.
I've checked the documentation and it looks like ObjectID is the right field. Where am I going wrong?
Thanks in advance!
Stewart
Solved! Go to Solution.
Hi @stranter,
Yes you can use the Notes entity (annotations). If you would want to list all notes for on quote you could use a list records or list rows action and use the following filter query.
Below is an example of that.
Replace the variable by the id of your quote. Or create the variable yourself and set the value in there.
_objectid_value eq '@{variables('RecordId')}'
Hi @stranter,
Yes you can use the Notes entity (annotations). If you would want to list all notes for on quote you could use a list records or list rows action and use the following filter query.
Below is an example of that.
Replace the variable by the id of your quote. Or create the variable yourself and set the value in there.
_objectid_value eq '@{variables('RecordId')}'
Hi @stranter ,
you can use fetch xml query as well
This blog might help.
https://ankitapowerblog.wordpress.com/2020/08/08/use-fetch-xml-query-in-power-automate/
Thanks - that got it. Awesome.