I am trying to download a PRODUCT_PARTITION_REPORT using an AWQL report using the .NET Client Library.
The Query:
"SELECT Id FROM PRODUCT_PARTITION_REPORT DURING TODAY"
works as expected returning a list of Ids of the product partitions.
However, when I add the ProductGroup field (or indeed PartitionType) to the query and instead attempt, say:
"SELECT Id,ProductGroup FROM PRODUCT_PARTITION_REPORT DURING TODAY"
The API returns the following error:
ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT, Trigger: , FieldPath: ProductGroup
These fields are valid as they are listed
here for this report type. Any idea what's wrong here?