# How payments work

#### 1. **requires\_payment\_method**

When the Payment is created, it has a status of `requires_payment_method` until a payment method is attached.

We recommend creating the Payment as soon as you know how much you want to charge, so that MoneyCollect can record all the attempted payments.

**2. requires\_confirmation**

After the customer provides their payment information, the Payment is ready to be confirmed.

In most integrations, this state is skipped because payment method information is submitted at the same time that the payment is confirmed.

**3. requires\_action**

If the payment requires additional actions, such as authenticating with [3D Secure](https://docs.moneycollect.com/docs/payment/3d-secure-authentication) , the Payment has a status of `requires_action`.

**4. processing**

Once required actions are handled, the Payment moves to `processing`. While for some payment methods (for example, cards) processing can be quick, other types of payment methods can take up to a few days to process.

**5. requires\_capture**

For Pre-authorisation payments, after the card is authorized, the Payment status transitions to `requires_capture`.  It requires further [capture the payment](https://docs.moneycollect.com/docs/pre-authorize-a-payment#2-capture-a-pre-authorized-payment) or [cancel the Pre-authorization](https://docs.moneycollect.com/docs/pre-authorize-a-payment#3-cancel-the-pre-authorization) operation.&#x20;

**6. succeeded**

A Payment with a status of succeeded means that the payment flow it is driving is complete.

The funds are now in your account and you can confidently fulfill the order. If you need to refund the customer, you can use the [Refunds API](https://apireference.moneycollect.com/docs/api-v1/4adbe00febf2a-list-all-refunds).

**7. failed**

Payment failed.

**8. canceled**

&#x20;You may cancel a Payment at any point before it is `processing` or `succeeded`.&#x20;
