Import Data Upload
Import data from an uploaded zip file.
Accepts a multipart file upload and runs the import in the background. Poll /data/import/status/{job_id} to check progress. Use this from remote or web clients that cannot access the server filesystem.
Request Body
multipart/form-data
TypeScript Definitions
Use the request body type in TypeScript.
Multipart body for POST /data/import/upload.
Response Body
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/data/import/upload" \ -F file="string"{ "job_id": "string", "message": "string", "status": "string", "success": true}