Skip to main content
PATCH
/
import
/
{baseId}
/
{tableId}
cURL
curl --request PATCH \
  --url http://127.0.0.1:3000/api/import/{baseId}/{tableId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "attachmentUrl": "<string>",
  "fileType": "csv",
  "insertConfig": {
    "sourceWorkSheetKey": "<string>",
    "excludeFirstRow": true,
    "sourceColumnMap": {}
  },
  "notification": true
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

baseId
string
required
tableId
string
required

Body

application/json
attachmentUrl
string
required
fileType
enum<string>
required
Available options:
csv,
excel
insertConfig
object
required
notification
boolean

Response

200

Successfully import table inplace

Last modified on December 10, 2025