Skip to main content
POST
Sends the customer notification / delivery email to every buyer of a digital product, instead of calling POST /orders/{id}/notify once per order. Use this after updating a product’s files to let all existing buyers know a new version is available. The emails are sent in the background, so the call returns immediately with the number of orders queued — it does not wait for delivery. Each buyer receives the same standard delivery email they’d get from the per-order notify endpoint, unless you override the subject or body in this request.
Buyers are resolved from the orders Filemonk has linked to this digital product. Discarded (deleted) orders are skipped.

Path parameters

string
required
The ID (UUID) of the digital product whose buyers should be notified.

Request body

string
Override the email subject for this send. Supports the same Liquid variables as your email template ({{ order.name }}, {{ customer.name }}, {{ shop.name }}). When omitted, the subject from your Filemonk email settings is used.
string
Override the email body for this send. Supports the same Liquid variables as your email template. When omitted, the body from your Filemonk email settings is used.

Response

string
required
The digital product the notifications were queued for.
integer
required
The number of orders queued for notification.