RPC importer call

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

HeaderValue
AuthorizationBearer <token>
Content-Typeapplication/json

Request Body

FieldTypeRequiredDescription
commandstringYesThe RPC command to execute (e.g. "import", "importFull", "importDelta").
argumentsobjectYesArguments 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
}
Path Params
integer
required
Headers
string
required

Makaira Instance ID

Response
200

OK

Language
Credentials
Bearer
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here!