v93

OpenAPI 3.1.0raw.githubusercontent.com2026-08-01218121759.7 KB
Products

Remove delivery file from product

Removes the attached distributable file from a product. Accepts the internal product id or, for Commerce API products, your productId.

delete/products/{productId}/delivery

Path parameters

productIdstring required

Internal product id, or your own productId for products pushed via the Commerce API.

Response

Delivery removed

successboolean

Example response

{
  "product": {
    "id": "prod_internal_1",
    "providerProductId": "prod_ABC123",
    "title": "The Indie Hacker Guide",
    "price": 4900,
    "currency": "USD",
    "digitalDelivery": {
      "url": "https://images.sequenzy.com/product-files/comp_123/9f2.../guide.pdf",
      "fileName": "guide.pdf",
      "mimeType": "application/pdf"
    }
  }
}