Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Delete a customer discount


Delete a customer discount

DELETE / v1 / customers /:id / discount

Removes the currently applied discount on a customer.

Parameters

No parameters.

Returns

An object with a deleted flag set to true upon success. This call returns an error otherwise, such as if no discount exists on this customer.

Response

{ "object": "discount", "deleted": true}

Delete a subscription discount

DELETE / v1 / subscriptions /:id / discount

Removes the currently applied discount on a subscription.

Parameters

No parameters.

Returns

An object with a deleted flag set to true upon success. This call returns an error otherwise, such as if no discount exists on this subscription.

Response

{ "object": "discount", "deleted": true}
Last verified 2026-09-24

Is this helpful?