Skip to main content
GET
/
v1
/
tables
/
{table_id}
/
download
Table.Download
curl --request GET \
  --url https://api.retab.com/v1/tables/{table_id}/download \
  --header 'Api-Key: <api-key>'
"<string>"
Download the CSV backing a table.
Python
csv_bytes = client.tables.download(table_id="workflow_table_123")
TypeScript
const csv = await client.tables.download("workflow_table_123");
Go
err := client.Tables.Download(ctx, "workflow_table_123")
Java
// Download the CSV backing a table.
cURL
curl https://api.retab.com/v1/tables/workflow_table_123/download \
  -H "Api-Key: $RETAB_API_KEY" \
  -o carriers.csv

Authorizations

Api-Key
string
header
required

Path Parameters

table_id
string
required

Response

Successful Response

The response is of type file.