Hi community,
it seems to be the case that my previous post was not submitted successfully. I am trying to read data through a rest api from my accounting software. However they provide only max 50 data sets per call.
For multiply months there are for sure more than 50 data sets. However for one month they are for sure less than 50 entries. Therefore I want to query per Month. As per https://support.klipfolio.com/hc/en-us/articles/218946328-Data-sources-with-multiple-pages- I should use a static and a dynamic data source for this.
My static dataset looks like
I want to send out a REST API Call per Month (per Line) to this URL: https://webapp.buchhaltungsbutler.de/api/v1/transactions/get
As per the API for /transactions/get (https://webapp.buchhaltungsbutler.de/docs/api/v1/) I can use the parameters "date_to" and "date_from" to query only a single month. I have to add those parameter to the body of the REST Call.
How can I use those values to build up my query?
Best,
Daniel