Skip to content

Create Import

Initialize a new data import job by providing the import file and configuration. Requires ADMIN permissions.

Parameters

name * are required parametersdata typedescription
body.type*stringThe type of data being imported (e.g., users, forms)
body.fileUrl*stringThe URL of the file to import
body.mappingsobjectColumn-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