Appearance
Create Import
Initialize a new data import job by providing the import file and configuration. Requires ADMIN permissions.
Parameters
| name * are required parameters | data type | description |
|---|---|---|
body.type* | string | The type of data being imported (e.g., users, forms) |
body.fileUrl* | string | The URL of the file to import |
body.mappings | object | Column-to-field mappings for the import |
Return Value
The created import job record with its assigned import ID.
Examples
bash
curl -X PUT "https://app.wombat.software/api/{targetPath}/import" \
-H "Content-Type: application/json" \
-H "Authentication: Bearer ..." \
-d '{"type": "users", "fileUrl": "https://storage.example.com/users.csv"}'ENDPOINTS
put
/api/{targetPath}/import