Skip to main content

Update a receipt

Enterprise Only

This endpoint is only available in the Enterprise package and requires the authenticated user to be a Super Admin.

Method: PUT

URL: https://example.com/<MIXPOST_CORE_PATH>/api/panel/receipts/{receiptUuid}

Authorization: Bearer <token>

Body:

{
"transaction_id": "txn_1234567890",
"invoice_number": "INV-2025-001",
"amount": 2499,
"tax": 100,
"currency": "USD",
"description": "Pro Plan - Monthly (Updated)",
"receipt_url": "https://vendors.paddle.com/invoices/...",
"paid_at": "2025-01-15 10:30:00"
}
KeyFormatRequiredDescription
transaction_idstringrequiredTransaction ID from payment platform
invoice_numberstringrequiredUnique invoice number
amountnumericrequiredPayment amount
taxnumericoptionalTax amount
currencystringrequiredCurrency code (e.g., USD, EUR)
descriptionstringoptionalReceipt description
receipt_urlstringoptionalURL to the receipt/invoice from payment platform
paid_atdaterequiredPayment date and time

Response:

{
"success": true
}
{
"success": false
}