Account Payment Capture Status Overview

A payment can be part of a number of transitions which may be split into a number of overall steps:

  • authorization - the payment is validated and the amount is possibly reserved on the customer account.
  • capture - the reserved amount is actually transferred from customer account to the client account.
  • cancel - an authorization may be cancelled.
  • refund - a captured payment may be refunded (initiated by Rator).

To get an overview of valid transitions, see the following diagram.

Please note that from all states it is possible to enter the error state, and from the error state it is possible to return to another state - this is not shown in the diagram.

The green arrows indicate transitions initiated by our business processes. This covers requesting a cancellation, a capture or a refund. In order to support re-entering the do_auth state, it is also possible to request an authorization.

The red solid arrows indicate transitions initiated by our business logic (by means of requesting authorization, cancellation, capture or refund) but performed by the payment gateway.

The red dashed arrows indicate transitions initiated by the payment gateway. These transitions occur when the communication is a-synchronous and thus the response arrive 'later', not coupled directly to the previous request.

Authorization steps

doAuthorize

When a payment is created, it is always created with this status. This indicates that the payment should be validated and the amount possibly reserved.
The payment will either be picked by Rator logic initiating the authorization, or it may be requested cancelled.

authorizeSent

When the authorization request is sent to the payment gateway, the actual communication may be delayed. In this case the payment gateway will indicate this with this state.
The payment will stay in this state, until the payment gateway receives information about the next state.

authorized

The authorization request is processed and the money is reserved. This will be reflected financially in the Rator system by creating appropriate detail lines.
The payment will stay in this state, until business logic or users request either a cancellation or a capture.

rejected

The authorization request is processed but the money could not be reserved. This could be caused by missing funds, wrong credentials, etc. This will be reflected financially in the Rator system by possible creating appropriate detail lines that will revert any previously created detail lines.
The payment is no longer active. In case a new authorization is needed, a new payment must be initiated.

Cancellation steps

doCancel

The ongoing authorization is requested to be cancelled.
The payment will be picked up by Rator logic that will initiate the actual cancellation.

cancelSent

When the cancellation request is sent to the payment gateway, the actual communication may be delayed. In this case the payment gateway will indicate this with this state.
The payment will stay in this state, until the payment gateway receives information about the next state.

cancelled

The cancellation request is processed and the previous authorization is cancelled. This will be reflected financially in the Rator system by possibly creating appropriate detail lines that will revert any previously created detail lines.
The payment is no longer active. In case a new authorization is needed, a new payment must be initiated.

Capture steps

doCapture

The previous authorization is requested to be captured.
The payment will be picked up by Rator logic that will initiate the actual capture.

captureSent

When the capture request is sent to the payment gateway, the actual communication may be delayed. In this case the payment gateway will indicate this with this state.
The payment will stay in this state, until the payment gateway receives information about the next state.

captured

The capture request is processed and the previous authorization is fulfilled.
The payment will in most cases never leave this state, so effectively the payment is considered completed. However, business logic or users may request the payment to be refunded, as well as the third party may initiate the payment to be withdrawn.

rejected

The capture request is processed but the money could not be transferred. This could be caused by account being terminated or blocked, or the previous authorization has expired. This will be reflected financially in the Rator system by creating appropriate detail lines that will revert any previously created detail lines.
The payment is no longer active. In case a new authorization and capture is needed, a new payment must be initiated.

withdrawn

The capture request is completed, but the third party has initiated the payment to be withdrawn. This will be reflected financially in the Rator system by creating appropriate detail lines that will revert any previously created detail lines.
The payment is no longer active. In case a new authorization and capture is needed, a new payment must be initiated.

Refund steps

doRefund

The previous captured is requested to be refunded.
The payment will be picked up by Rator logic that will initiate the actual refund.

refundSent

When the refund request is sent to the payment gateway, the actual communication may be delayed. In this case the payment gateway will indicate this with this state.
The payment will stay in this state, until the payment gateway receives information about the next state.

refunded

The refund request is processed and completed successfully.

partially_refunded

The partial refund has been completed successfully. The partial refund is only available from core 9.10 if it is supported by the specific payment gateway in use.

 

 

Payout steps

A payout is the case, where money is to be transferred from the customer BillingGroup balance to his/her bank account. A payout will create a negative InvoiceDetailLine.

Please note that the payout flow is a separate process.

doPayout

AccountPayments can be created and set in status DO_PAYOUT. This will make the AccountPayment visible for an engine, that handles payouts.

payoutSent

When the payout request is sent to the payment gateway, the actual communication may be delayed. In this case the payment gateway will indicate this with this state.
The payment will stay in this state, until the payment gateway receives information about the next state.

paidOut

The payout request is processed and completed successfully. The service class AccountPaymentSetIsPaidOut is called in order to:

  • Update the status of the AccountPayment to paidOut.
  • Create an InvoiceDetailLine.
payoutRejected

The request for payout is rejected by the payment gateway. Reasons could be that the indicated account number or credit card no longer is available.

payoutWithdrawn

The previously paid out payment is now withdrawn. This could happen if the payment was marked as successfully paid out, but later the customer or bank rejected the payment anyway.