Export API parameterization dates

I have to export Eazy bi API

https://aod.eazybi.com/accounts/xxx/export/report/xxx.csv?selected_pages=[Project].[xxx],[Time].[October]

I want report between dates. How can i specify start date and end date?

Hi @Nagaraju_Dasam,

You can’t specify the Time dimension members to be filtered by between specific dates this way. As a workaround, you can try to specify a particular Time dimension member - be it a default ([Time].[October 2019]) or a calculated one.

In the calculated Time dimension member, you can select the Time dimension members to be filtered by the specific date range. Please have a look at an example below:

Aggregate(
  [Time].[Day].DateMembersBetween('30 days ago', 'today')
)

You can then use the name of the calculated member in the export results parameter.

Best,
Roberts // eazyBI support