Skip to main content

Batch Operations

Most entities support batch create, edit, and delete for efficient bulk operations:

# Batch create
POST /api/{entity}/batch/new
Content-Type: application/json

[
{"firstname": "John", "email": "john@example.com"},
{"firstname": "Jane", "email": "jane@example.com"}
]

# Batch edit
PATCH /api/{entity}/batch/edit

# Batch delete
DELETE /api/{entity}/batch/delete?ids=1,2,3

The maximum number of items per batch request is 200 by default.