Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Adds DELETE method support to the Batch API


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

FieldChangeFrom → to
V2. Core. BatchJob#create. endpoint. http_methodChangedenum('post') → enum('delete'|'post')

Upgrade

  1. View your current API version in Workbench.
  2. 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
  1. Upgrade the API version used for webhook endpoints .
  2. Test your integration against the new version.
  3. If you use Connect, test your Connect integration .
  4. In Workbench, perform the upgrade . You can roll back the version for 72 hours.

Learn more about Stripe API upgrades.

Last verified 2026-09-24

Is this helpful?