Hi! I'm trying to work with business process flows with the web api. I'm using Simple.OData.Client, which uses the OData metadata to make requests and parse responses. When I run the function RetrieveProcessInstances, the response body starts with
@odata.context=endpoint.crm.dynamics.com/.../v9.0$metadata#businessprocessflowinstances
However, the metadata document referenced does not contain an EntitySet named businessprocessflowinstances. This is causing an error in Simple.OData.Client when receiving the response because it doesn't know what type of objects it should be expecting.
Is there something I'm missing, or is it a bug that the response references a non-existant section of the metadata?
Thanks!