Batch Endpoints
Confused about "Batch Endpoints"?
Let us know how we can improve our documentation:
LAST EDIT Oct 07 2024
- On This Page:
- Upsert
- Get Many
- Delete Many
You can use batch endpoints to insert, delete or read multiple entries at once. These three endpoints are only available when running Stream on your backend.
Upsert
Copied!Confused about "Upsert"?
Let us know how we can improve our documentation:
Upsert allows you to insert or update up to 1000 entries with a single API call. The payload is an array of entries. Entries that already exist (same ID) will be updated with the new version.
Get Many
Copied!Confused about "Get Many"?
Let us know how we can improve our documentation:
This method allows you to retrieve up to 1000 entries by ID.
Delete Many
Copied!Confused about "Delete Many"?
Let us know how we can improve our documentation:
This method allows you to delete up to 1000 entries by ID.