Cancellations
Canceling an ACH transfer is possible if the following conditions are met:
- Bank-to-bank: The credit has not yet originated
- Wallet-to-bank: The credit has not yet originated
- Bank-to-wallet: The debit has not yet originated
In any of the above scenarios, transfers within a transfer group can be canceled if they fall within the allowed time frame. Once a transfer is successfully canceled, all subsequent transfers in the transfer group will also be automatically canceled.

Cancellations must occur within a specific time frame.
Request cancellation
Request a cancellation by sending the accountID
and transferID
to the cancel a transfer POST
endpoint.
|
|
If you request a cancellation, but the transaction has already been originated, previously failed, or already completed, you’ll receive a 400
error. If the request is made too close to origination, it’s possible the the cancellation will fail. Retrying the cancellation is possible, but likely won’t be successful.
Additionally, you can get the details of a cancellation using the following:
|
|
Navigate to Transfers in the Dashboard. If a transfer can be canceled, you’ll be able to use the Cancel button located near the transfer amount. If the transfer is outside the cancellation window, the cancel button will be grayed out.
Status
A cancellation status can be one of pending
, completed
, or failed
. The achDetails
object will also show a status of canceled
if the transfer has been successfully canceled, along with a canceledOn
timestamp.
For bank-to-bank transfers, a cancellation will be pending
when the debit transaction has already been originated. Moov waits for the debit to complete and subsequently credits the source wallet before the credit leg is initiated to the destination. If the source does not have a wallet, the destination wallet will be credited and you can initiate a transfer of funds back to the source bank account.
A successful transfer request will have the following response:
|
|
For updates on a pending cancellation, you can subscribe to the cancellation webhooks, or get the cancellation status using the cancellation details GET
endpoint.
Webhooks
Subscribe to the following webhook events, which will provide you with relevant cancellation updates:
cancellation.created
notifies you when the cancellation was successfully createdcancellation.updated
notifies you when the cancellation was updatedpending
completed
failed