Please add a feature which allows exporting all data sources and report definitions as json, so they can be stored and updated in version control.
1 comment
-
Hi there!
It may be possible to do what you're looking for via automation with the Klipfolio API. For data sources, we have the following endpoints:
https://apidocs.klipfolio.com/reference#section-get-datasources - you can get a list of data sources and then drill in to each specific data source.
https://apidocs.klipfolio.com/reference#section-get-datasources-id-properties - this gives a list of properties associated with a specific data source in JSON format. You can also do a PUT to this endpoint to update the properties.
For report definitions, if you mean Klips then you can do something similar with each Klip's schema via these endpoints:
https://apidocs.klipfolio.com/reference#section-get-klips
https://apidocs.klipfolio.com/reference#section-get-klips-id-schema
Jeremy