table
Get records as a CSV file
Returns the csv of the given table specified by the table_name and schema.
Parameters
- table_name: str
- schema : str, default “public” The schema to retrieve the tables from. If no parameter is provided, defaults to “public”.
- timezone_offset: int The timezone offset applied to the datetime formats. Defaults to 9 (KST).
Returns
A StreamingResponse Pydantic object that iterates through the csv. If the table is empty, returns a Response object with code 204.
GET
/
api
/
v1
/
table
/
{table_name}
/
records
/
csv
Authorizations
Enter: 'Bearer <JWT>', where JWT is the access token. Example: Bearer access_token_comes_here
Path Parameters
Response
200 - application/json
The response is of type any
.