Skip to main content

Status Lifecycle

Quick Reference

WhatCharge status reference
WhyTrack every state in the payment lifecycle

Every charge moves through a series of statuses from creation to settlement. Understanding these transitions lets you build integrations that react correctly at each stage and handle edge cases gracefully.

Transitions vary by method

Exact transitions depend on the payment method, capture mode (auto vs manual), and acquirer. The diagram below shows the full superset of possible transitions.

Status order

  1. issued — Charge created, not yet sent to acquirer
  2. pending — Sent to acquirer, awaiting response
  3. confirmed — Acquirer authorized the transaction
  4. pre_captured — Capture requested, awaiting confirmation
  5. paid — Funds captured successfully
  6. refunded — Full or partial refund completed
  7. refund_error — Refund attempt failed
  8. pre_chargeback_resolution — Dispute opened, evidence window active
  9. chargeback — Dispute lost, funds debited
  10. chargeback_requested — Cardholder initiated dispute with issuer
  11. chargeback_reversed — Dispute resolved in merchant favor
  12. chargeback_refunded — Merchant refunded disputed charge
  13. canceled — Charge voided before capture
  14. error — Terminal failure from acquirer or gateway

State transitions

What to do at each status

StatusMeaningTerminal?Your action
issuedCharge created locallyNoWait for acquirer submission
pendingAwaiting acquirer responseNoWait for webhook notification
confirmedAuthorization approvedNoCapture manually or wait for auto-capture
pre_capturedCapture in progressNoWait for capture confirmation webhook
paidFunds capturedNoFulfill the order and send receipt
refundedRefund completedYesNotify customer, update accounting records
refund_errorRefund failedYesRetry refund or escalate to A55 support
pre_chargeback_resolutionDispute evidence windowNoGather evidence and submit before deadline
chargebackDispute lostYesRecord debit, review fraud patterns
chargeback_requestedDispute initiatedNoPrepare evidence for representment
chargeback_reversedDispute wonNoReturns to paid, no action needed
chargeback_refundedDisputed charge refundedYesRecord final settlement adjustment
canceledVoided before captureYesNo funds moved, safe to discard
errorTerminal failureYesLog error, retry with a new charge if appropriate