Skip to main content
POST
/
api
/
v1
/
invoices
/
{invoice_id}
/
send-email
Send Invoice Email
curl --request POST \
  --url https://api.example.com/api/v1/invoices/{invoice_id}/send-email
{
  "success": true,
  "message": "Invoice email sent successfully",
  "payment_link": "https://checkout.stripe.com/..."
}
invoice_id
string
required
UUID of the invoice
If the invoice is in DRAFT, it is automatically finalized to OPEN before sending.
{
  "success": true,
  "message": "Invoice email sent successfully",
  "payment_link": "https://checkout.stripe.com/..."
}