Skip to main content
DELETE
/
api
/
payments
/
stripe
/
{environment}
/
catalog
/
products
/
{productId}
Delete Stripe Product
curl --request DELETE \
  --url https://api.example.com/api/payments/stripe/{environment}/catalog/products/{productId} \
  --header 'Authorization: Bearer <token>'
{
  "productId": "prod_123",
  "deleted": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

environment
enum<string>
required

Payment provider environment.

Available options:
test,
live
productId
string
required

Stripe product ID.

Minimum string length: 1

Response

Product deleted

productId
string
required
Example:

"prod_123"

deleted
boolean
required