Skip to main content
DELETE
/
api
/
v1
/
products
/
{productId}
/
delivery
Remove Delivery File
curl --request DELETE \
  --url https://api.sequenzy.com/api/v1/products/{productId}/delivery \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "product": {
    "id": "prod_internal_1",
    "title": "The Indie Hacker Guide",
    "digitalDelivery": null
  }
}
Remove the attached distributable file from a product. Future purchases of this product will no longer include download properties on the purchase event.

Request

productId
string
required
Product ID (from List Products). For products pushed via the Commerce API, you can also use your own productId (e.g. my-ebook).
curl -X DELETE "https://api.sequenzy.com/api/v1/products/prod_internal_1/delivery" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "product": {
    "id": "prod_internal_1",
    "title": "The Indie Hacker Guide",
    "digitalDelivery": null
  }
}