Appearance
Init Export
Initialize a system data export job. Requires the SYSTEM_EXPORT feature flag and ADMIN permissions.
Parameters
| name * are required parameters | data type | description |
|---|---|---|
body.type* | string | The type of data to export (e.g., forms, users, training) |
body.filters | object | Optional filters to apply to the exported data |
body.format | string | Output format (e.g., csv, json) |
Return Value
The initialized export job record, including a download URL when the export is ready.
Examples
bash
curl -X PUT "https://app.wombat.software/api/{targetPath}/export" \
-H "Content-Type: application/json" \
-H "Authentication: Bearer ..." \
-d '{"type": "forms", "format": "csv"}'ENDPOINTS
put
/api/{targetPath}/export