Skip to main content
POST
/
service
/
general-ledger
/
invoice-payments
/
{invoice_payment_id}
/
void
curl -X POST https://kube.acho.io/service/general-ledger/invoice-payments/CP-2024-001/void \
  -H "Authorization: jwt YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"reason": "Check bounced"}'
{
  "customer_payment_id": "CP-2024-001",
  "status": "Voided",
  "void_reason": "Check bounced"
}

Request

Void an invoice payment.

Body Parameters

reason
string
required
Reason for voiding
curl -X POST https://kube.acho.io/service/general-ledger/invoice-payments/CP-2024-001/void \
  -H "Authorization: jwt YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"reason": "Check bounced"}'
{
  "customer_payment_id": "CP-2024-001",
  "status": "Voided",
  "void_reason": "Check bounced"
}