> ## Documentation Index
> Fetch the complete documentation index at: https://docs.momentco.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Introduction to authorisation and capture payments

Authorisation and capture is a two-step payment flow that allows merchants to reserve funds on a customer's payment method before settling the transaction. It separates the moment of commitment from the moment of collection: authorisation confirms that funds are available and places a hold, while capture moves the money.

This flow applies only to card payments. It is initiated by setting `capture_method: manual` when creating a payment session. If omitted, `capture_method` defaults to `automatic`, which settles funds immediately upon authorisation (standard sale behaviour).

When `capture_method: manual` is set on a session that goes through Moment Checkout, the checkout presents card payment methods only. Non-card options are not surfaced to the customer, so a manual-capture session always results in a card payment.

<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-2 gap-6">
  <Card title="Use Cases" icon="lightbulb" href="/documentation/collect/payment-sessions/authorisation-capture/use-cases">
    See when authorisation and capture is the right fit for your payment flow.
  </Card>

  <Card title="Lifecycle" icon="arrows-spin" href="/documentation/collect/payment-sessions/authorisation-capture/lifecycle">
    Understand the states a payment moves through from authorisation to settlement or expiry.
  </Card>

  <Card title="Captures and Voids" icon="hand" href="/documentation/collect/payment-sessions/authorisation-capture/captures-and-voids">
    Learn how to capture or void authorised payments, including partial captures.
  </Card>

  <Card title="Examples" icon="code" href="/documentation/collect/payment-sessions/authorisation-capture/examples">
    Common authorisation and capture flow examples with full request and response payloads.
  </Card>

  <Card title="Webhooks" icon="webhook" href="/documentation/collect/payment-sessions/authorisation-capture/webhooks">
    React to authorisation, capture, and void events in real time.
  </Card>

  <Card title="Error Handling" icon="triangle-exclamation" href="/documentation/collect/payment-sessions/authorisation-capture/error-handling">
    Handle conflict scenarios for capture and void operations.
  </Card>
</div>
