Job Types
Import Microdata files
Upload and import a data file in one step (multipart/form-data). Creates an import_microdata background job after upload. Equivalent to uploading separately then POST /jobs with job_type import_microdata and payload file_id + project_id.
post/jobs/import_microdata/{project_id}
Path parameters
project_idstring required
Project ID where the data file will be imported
Response
File uploaded and job created successfully
Example response
{
"status": "success",
"message": "File uploaded and import job created successfully",
"file_id": "F4",
"job": {
"payload": {
"project_id": 123,
"options": {}
},
"result": {
"pdf_path": "/path/to/project_123.pdf",
"project_id": 123,
"generated_at": "2025-01-11 16:30:45"
}
}
}