curl --request POST \
--url https://api.example.com/tables/{table_id}/import \
--header 'Content-Type: multipart/form-data' \
--cookie fastapiusersauth= \
--form file='@example-file' \
--form 'column_mapping=<string>'{
"rows_inserted": 123
}Import data from a CSV file into a table.
curl --request POST \
--url https://api.example.com/tables/{table_id}/import \
--header 'Content-Type: multipart/form-data' \
--cookie fastapiusersauth= \
--form file='@example-file' \
--form 'column_mapping=<string>'{
"rows_inserted": 123
}Successful Response
Response for batch insert operation.
Was this page helpful?