One-time Payments
One-Off Payment
One-Off Payment
- Scenario: A one-time payment where the customer is present, and the payment method is not saved for future use.
- Use Case: Customers making a one-time purchase without any desire to save their payment method for future use.
-
Session Type:
one_time -
Behavior:
- The customer completes the payment via the hosted Checkout page.
- The payment method is not saved because the
save_payment_methodoption is set tonever.
- Example: Buying a product or service without storing the card for future payments.
One-Off Payment (Saved Card)
One-Off Payment (Saved Card)
- Scenario: A one-time payment where the customer is present, and the payment method is only saved for future payments where the customer is present.
- Use Case: Customers who want to reuse their payment method for other purchases initiated by them in the future.
-
Session Type:
one_time -
Behavior:
- The customer completes the payment via the hosted Checkout page.
- The payment method is saved for use when the customer is present and the
save_payment_methodoption is set toalwaysorprompt.
- Example: Purchasing a product and saving the card for future use during checkout.
Recurring Payments
See Recurring Payments for how mandates, subscriptions, and payment methods work together.Initiate First Payment
Initiate First Payment
- Scenario: The first payment in a series where the customer is present, and the payment method is saved with a mandate for future payments.
- Use Case: Merchants setting up recurring payments for subscriptions or installment plans.
-
Session Type:
first_in_series -
Behavior:
- The customer completes the initial payment via the hosted Checkout page.
- A mandate is created authorising future payments that occur when the customer is not present.
- Example: Signing up for a monthly subscription with an initial payment.
Make Subsequent Payment
Make Subsequent Payment
-
Scenario: A follow-up payment where the customer is not present, using a payment method saved in a previous
first_in_seriessession. - Use Case: A merchant initiates a recurring payment based on an existing mandate.
-
Session Type:
next_in_series -
Behavior:
- No customer interaction is required.
- The payment is processed programmatically using the saved payment method and existing mandate.
- Example: Processing a subscription payment each month.
Cross-Cutting Flows
Authorisation and capture, payment method verification, and payment method selection aren’t tied to a specific session type; they layer on top of a one-time or recurring payment.Control Visible Payment Methods in Checkout
Control Visible Payment Methods in Checkout
- Scenario: A merchant wants to control which payment methods are available or preselected when the customer lands on Checkout.
- Use Case: Merchants who present payment method options on their own page and want Moment Checkout to open with a specific method already selected.
-
Session Type:
one_timeorfirst_in_series(any session where the customer lands on a hosted Checkout page). -
Behavior:
- The merchant creates a session with
visible_payment_methods: ["card"]. - The customer lands on the Checkout page with the card form displayed directly, since only one payment method was specified.
- If multiple values are passed in
visible_payment_methods, the Checkout page displays all listed methods without preselecting any.
- The merchant creates a session with
- Example: A merchant’s product page shows a card icon; clicking it opens Checkout with the card form already active.
See the full Quickstart Guide for more details.
Verify Card and Create a Mandate
Verify Card and Create a Mandate
- Scenario: Verify a customer’s card without reserving any funds when setting up a mandate for future recurring payments.
- Use Case: Subscription businesses that need to confirm a card is valid before initiating future charges (e.g., free trial sign-up).
-
Session Type:
first_in_series -
Behavior:
- The merchant creates a
first_in_seriessession withamount: 0. - The customer completes the checkout flow. The card is verified via payment method verification.
- A mandate is created for future merchant-initiated payments without any initial charge.
- The merchant creates a
- Example: A subscription service verifying a customer’s card at sign-up before the first billing cycle begins.
See the full Authorisation & Capture guide for details.
Verify and Save a Card
Verify and Save a Card
- Scenario: Verify and save a customer’s card without charging them, for future customer-initiated purchases.
- Use Case: E-commerce platforms or marketplaces where customers save a card at account creation for faster future checkouts.
-
Session Type:
one_time -
Behavior:
- The merchant creates a
one_timesession withamount: 0. - The customer completes the checkout flow. The card is verified and saved.
- No mandate is created. The saved card is available for future customer-present payments.
- The merchant creates a
- Example: A customer adding a payment method to their account without making a purchase.
See the full Authorisation & Capture guide for details.

