post
https://{yourinstance}.makaira.io/importer//start
Trigger full imports via API, needs importer[importerid]="source target" setting in customer config
Sends an RPC command to the importer. This is the core endpoint for triggering import operations such as starting a full or delta import for one or more document types.
Requires the importer:write or importer.write permission.
Request
POST /importer/
Headers
| Header | Value |
|---|---|
Authorization | Bearer <token> |
Content-Type | application/json |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
command | string | Yes | The RPC command to execute (e.g. "import", "importFull", "importDelta"). |
arguments | object | Yes | Arguments for the command. Content depends on the command. |
Example Request
{
"command": "importFull",
"arguments": {
"types": ["product", "category"],
"language": "de"
}
}Response
Returns the result of the RPC command on success, or an error payload with the appropriate HTTP status code on failure.
Example Response
{
"ok": true
} 200OK

