Skip to main content
POST
/
service
/
general-ledger
/
credit-memos
/
{credit_memo_id}
/
void
curl -X POST https://kube.acho.io/service/general-ledger/credit-memos/CM-2024-001/void \
  -H "Authorization: jwt YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"reason": "Credit memo created in error"}'
{
  "credit_memo_id": "CM-2024-001",
  "status": "Voided",
  "void_reason": "Credit memo created in error"
}

Request

Void a credit memo.

Body Parameters

reason
string
required
Reason for voiding
Applied credit memos cannot be voided. You must unapply them first.
curl -X POST https://kube.acho.io/service/general-ledger/credit-memos/CM-2024-001/void \
  -H "Authorization: jwt YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"reason": "Credit memo created in error"}'
{
  "credit_memo_id": "CM-2024-001",
  "status": "Voided",
  "void_reason": "Credit memo created in error"
}