Withdrawals

Push money out of the user's Qwik DDA to an externally-linked bank โ€” the inverse of a deposit.

POST/partner/cards/withdrawals

๐Ÿ”‘ Org key + secret๐Ÿ‘ค User session
FieldTypeRequiredNotes
amountnumberโœ…Dollars, > 0.
to_account_idstringโœ…Destination external bank id.
from_account_idstringโ€”Source DDA; defaults to the user's primary DDA.
descriptionstringโ€”Max 500 chars.
201 ยท Response
{
  "ach_withdrawal": {
    "id": "uuid", "amount": 25.00, "currency": "USD", "status": "pending",
    "to_account_id": "uuid", "from_account_id": "uuid",
    "external_payment_id": "...", "error": null, "created_at": "...", "updated_at": "..."
  }
}

Withdrawals share the same ACH status lifecycle and emit Payment.ACH.* webhooks with data.ach_direction = "outbound".