Skip to content

Commit 6e2e711

Browse files
jirkasemmlerclaude
authored andcommitted
docs: add gzip param to workspace table export Apiary documentation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2ff24f3 commit 6e2e711

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

apiary.apib

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)