Skip to main content

Overview

Novac allows you to securely save a customer’s card for future transactions, enabling a smooth and reliable experience for recurring or repeat payments. This feature is especially useful for businesses offering subscriptions, memberships, or installment-based billing, as it eliminates the need for customers to re-enter their card details each time.
Tokenization only works for dollar cards, use the recurring payment link methods for ngn card subscriptions.

How Customer Card Tokenization Works

When you verify a transaction using its reference, Novac returns a transaction details that includes the customer’s card information.
Within this customer’s card object, you’ll find a token field. This token serves as a secure representation of the customer’s card, allowing you to charge the card for future payments.
Sample Transaction Response
In the example above, the token field represents the customer’s securely stored card reference. This token is what you’ll use to charge the customer again in the future without requesting their card details.
Ensure that the actual card details are never stored on your servers, only secure, tokenized references.

Charge a Customer’s Saved Card

To charge a customer’s saved card, make a POST request to the /api/v1/tokenized-card-charge endpoint. This request uses the previously returned token to process the payment securely.
Ensure that the email value in the request object matches the one used when the checkout payment was created.
Request

What’s Next?