API
Create Importer
Create an importer
POST
/
importer
Authorization
Body
curl --request POST \
--url https://api.tableflow.com/v1/importer \
--header 'Content-Type: application/json' \
--data '{
"id": "6de452a2-bd1f-4cb3-b29b-0f8a2e3d9353",
"name": "Test Importer",
"skip_header_row_selection": true,
"template": {
"columns": [],
"id": "f0797968-becc-422a-b135-19de1d8c5d46",
"name": "My Template"
}
}'
{}
Example Request
{
"name": "API Test Importer",
"template": {
"columns": [
{
"name": "First Name",
"key": "first_name",
"required": false,
"description": "The first name of the user",
"suggested_mappings": [
"First",
"Name"
]
},
{
"name": "Last Name"
},
{
"name": "Email",
"required": true,
"description": "The email of the user"
}
]
}
}
Body
application/json
id
string
name
string
skip_header_row_selection
boolean
template
object
Response
200 - application/json
The response is of type object
.
curl --request POST \
--url https://api.tableflow.com/v1/importer \
--header 'Content-Type: application/json' \
--data '{
"id": "6de452a2-bd1f-4cb3-b29b-0f8a2e3d9353",
"name": "Test Importer",
"skip_header_row_selection": true,
"template": {
"columns": [],
"id": "f0797968-becc-422a-b135-19de1d8c5d46",
"name": "My Template"
}
}'
{}