Skip to main content
DELETE
/
digital_products
/
{id}
curl -X DELETE 'https://app.filemonk.io/api/v1/external/digital_products/b2c3d4e5-f6a7-8901-bcde-f12345678901' \
  -H 'X-Auth-Token: fm_api_key_your_key_here'
const productId = 'b2c3d4e5-f6a7-8901-bcde-f12345678901';
await fetch(
  `https://app.filemonk.io/api/v1/external/digital_products/${productId}`,
  {
    method: 'DELETE',
    headers: { 'X-Auth-Token': 'fm_api_key_your_key_here' }
  }
);
import requests

product_id = 'b2c3d4e5-f6a7-8901-bcde-f12345678901'
requests.delete(
    f'https://app.filemonk.io/api/v1/external/digital_products/{product_id}',
    headers={'X-Auth-Token': 'fm_api_key_your_key_here'}
)
{
  "error": "Digital product not found"
}

Path parameters

id
string
required
The digital product’s unique identifier (UUID).

Response

Returns 204 No Content on success.
Deleting a digital product removes the link between the Shopify product and its assets. The assets themselves are not deleted — they remain in your store and can be linked to other products. Existing orders that have already been fulfilled are not affected.
curl -X DELETE 'https://app.filemonk.io/api/v1/external/digital_products/b2c3d4e5-f6a7-8901-bcde-f12345678901' \
  -H 'X-Auth-Token: fm_api_key_your_key_here'
const productId = 'b2c3d4e5-f6a7-8901-bcde-f12345678901';
await fetch(
  `https://app.filemonk.io/api/v1/external/digital_products/${productId}`,
  {
    method: 'DELETE',
    headers: { 'X-Auth-Token': 'fm_api_key_your_key_here' }
  }
);
import requests

product_id = 'b2c3d4e5-f6a7-8901-bcde-f12345678901'
requests.delete(
    f'https://app.filemonk.io/api/v1/external/digital_products/{product_id}',
    headers={'X-Auth-Token': 'fm_api_key_your_key_here'}
)
{
  "error": "Digital product not found"
}