Appearance
Bulk Operations
Generated controllers expose endpoints for processing multiple records in a single request.
Creating in Bulk
Send a list of request DTOs to the POST /entities/bulk
endpoint.
http
POST /users/bulk
[
{"username": "a"},
{"username": "b"}
]
Updating in Bulk
Use PUT /entities/bulk
with objects containing identifiers.
Deleting in Bulk
Provide a list of identifiers to DELETE /entities/bulk
.
Bulk endpoints respond with per-item status information, making it easy to diagnose failures.