POST /api/database/tables/{table_id}/import/async/
Import data in the specified table if the authorized user has access to the related database's workspace. This endpoint is asynchronous and return the created job to track the progress of the task.
Servers
- /
Path parameters
Name | Type | Required | Description |
---|---|---|---|
table_id |
Integer | Yes |
Import data into the table related to the provided value. |
Request headers
Name | Type | Required | Description |
---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/json" |
Request body fields
Name | Type | Required | Description |
---|---|---|---|
data[] |
Array | Yes |
A list of rows you want to add to the specified table. Each row is a list of values, one for each writable field. The field values must be ordered according to the field order in the table. All values must be compatible with the corresponding field type. Ex:
for adding two rows to a table with two writable fields. |
configuration |
Object | No |
Additional table import configuration. |
configuration.upsert_values[] |
Array | No |
A list of values that are identifying rows in imported data.
The number of rows in |
configuration.upsert_fields[] |
Array | No |
<function TableImportConfiguration. at 0x7fcbca0e6660> |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.