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

Documentation Index

Fetch the complete documentation index at: https://docs.insforge.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Path Parameters

productId
string
required

Stripe product ID.

Minimum string length: 1

Query Parameters

environment
enum<string>
required

Stripe environment.

Available options:
test,
live

Response

Product deleted

stripeProductId
string
required
Example:

"prod_123"

deleted
boolean
required