File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5398,6 +5398,7 @@ from the workspace schema to file storage. The exported file can then be downloa
53985398 + csv - Export as CSV format
53995399 + parquet - Export as Parquet format (requires project feature support)
54005400 + Default: csv
5401+ + gzip (optional, boolean) - If true, the exported file will be gzip-compressed. Defaults to false.
54015402
54025403+ Request (application/json)
54035404 + Headers
@@ -5409,7 +5410,8 @@ from the workspace schema to file storage. The exported file can then be downloa
54095410 {
54105411 "tableName": "my_table",
54115412 "fileName": "custom_export",
5412- "fileType": "csv"
5413+ "fileType": "csv",
5414+ "gzip": true
54135415 }
54145416
54155417+ Response 202 (application/json)
@@ -5425,7 +5427,8 @@ from the workspace schema to file storage. The exported file can then be downloa
54255427 "workspaceId": 504345774,
54265428 "tableName": "my_table",
54275429 "fileName": "custom_export.csv",
5428- "format": "csv"
5430+ "format": "csv",
5431+ "gzip": true
54295432 },
54305433 "createdTime": "2025-10-12T21:43:00+0000",
54315434 "startTime": null,
You can’t perform that action at this time.
0 commit comments