post
https://api.talkdeskapp.com/data-tables//rows/import
Import rows into a data table by uploading a CSV or JSON file. The import validates the file
against the table schema, deduplicates rows by key (keeping last occurrence), and upserts rows
(creates new rows or updates existing rows matched by key).
File constraints:
- CSV: max 10 MB
- JSON: max 2 MB
- Only one file per request
- File type determined by extension (
.csvor.json) or content type
CSV format:
- Delimiter: comma
- Encoding: UTF-8 (BOM is stripped if present)
- Quoting: RFC 4180
- Headers must exactly match the table's column slugs (including
key) - Empty fields are treated as null (column not set)
JSON format:
- Must be a top-level array of objects
- Each object must include all table column slugs as keys
- Values are natively typed (strings, numbers, booleans, null)
Validation pipeline (fail-fast, atomic):
- File type and size validation
- Header/key matching against table schema (rejects duplicates, missing, or extra columns)
- Empty key validation (every row must have a non-blank key)
- Duplicate key deduplication (last occurrence wins)
- Row limit check (max 1000 rows per table)
- Per-cell type validation against column types
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…