Public preview
Adds DELETE method support to the Batch API Public preview
What’s new
The Batch Jobs v2 API now supports the DELETE HTTP method in addition to the existing POST method support. You can now use the DELETE method when creating batch operations through the endpoint.http_method parameter, which previously only supported POST operations.
Impact
You can now create batch jobs that perform DELETE operations on Stripe resources. This is useful for bulk operations like canceling multiple subscriptions at once. If you’re currently performing individual DELETE operations that could benefit from batching, you can now group them into a single batch request to help improve efficiency and reduce the number of API calls.
The change is additive and doesn’t affect existing batch operations that use the POST method.
Changes
| Field | Change | From → to |
|---|---|---|
| V2. Core. BatchJob#create. endpoint. http_method | Changed | enum('post') → enum('delete'|'post') |
Upgrade
- View your current API version in Workbench.
- If you use an SDK, upgrade to the corresponding SDK version for this API version.
- If you don’t use an SDK, update your API requests to include Stripe-Version: 2026-04-22. preview
- Upgrade the API version used for webhook endpoints .
- Test your integration against the new version.
- If you use Connect, test your Connect integration .
- In Workbench, perform the upgrade . You can roll back the version for 72 hours.
Learn more about Stripe API upgrades.
