Are you using our SaaS platform (Baserow.io) or self-hosting Baserow?
Self-hosted
What do you need help with?
Can I export data with a Cronjob or any other way instead of using the menu option
I’m writing Baserow self hosted on OpenShift Cluster
Currently I go to home page and click export data and then download the zip file
Is there any other way to trigger this action
It is possible to trigger export by using /api/workspaces/<workspace_id>/export/async/
(you can pass {only_structure: true}
in this request json if you want the export structure without data)
In the response you will get a job id like id: 211084
Then you can use it to check if job is done via /api/jobs/?job_ids=211084
In that response you will have list of jobs (in this case just one) that once is finished
will also provide property url
that is the link to exported workspace file.
So you can do it without UI but requires some processing as it’s async job (as any other export in Baserow)