import_execute
Uploads a CSV or XLSX file and initiates an import using a predefined mapping, returning an import object with importId for status tracking.
Instructions
Uploads a CSV/XLSX file and starts an import using an existing mapping. The MCP server reads the file from disk — pass an absolute path. Returns the created import object including importId. Status starts as SCHEDULED — poll import_status or use import_wait. Limits: .csv/.xlsx/.xls only, 50MB max.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| companyId | Yes | Company id from companies_list. | |
| filePath | Yes | Absolute path to a .csv, .xlsx, or .xls file on the machine running the MCP server. | |
| entityName | Yes | Entity to import as — must match entities_list (e.g. 'Journal Entry'). | |
| mappingId | Yes | Mapping id from mappings_list to apply to the file. |