Cash App Afterpay On File
Cash App Afterpay On File allows customers to save Cash App Afterpay as a payment method on your website. Similar to storing a credit card on file, this simplifies future transactions and supports recurring payments like subscriptions.
Benefits include:
- Payment flexibility: You can offer both one-time and recurring purchases to your customers using Cash App Afterpay.
- Faster checkout: Once a customer links their Cash App Afterpay account, they’re not required to input their Cash App Afterpay account details for future Cash App Afterpay purchases. This reduces friction – which is especially important for mobile transactions and frequent purchases.
- Improved conversion and retention: A simpler repeat purchase experience encourages customers to return, boosts conversion rates, and increases customer lifetime value.
Supported use cases:
- Customer-initiated transaction (CIT): A payment initiated by the customer using their saved Cash App Afterpay account details, while the customer is present on your website.
- Example: any one-off customer-initiated purchase on your website
- Merchant-initiated transaction (MIT): A payment initiated by the merchant, while the customer is not present on your website. These payments can be fixed or variable amounts.
- Example: regular and ongoing subscriptions and memberships.
When a customer saves Cash App Afterpay as a payment method, a grant is created. A grant is a payment token associated with a specific customer that merchants can use to initiate future payments. After any on file payments are processed, the customer receives a Cash App Afterpay order confirmation email, regardless of whether the payment is customer-initiated or merchant-initiated.
Important
On file payment functionality is available only in Australia, New Zealand, and the United States. It’s supported only on API v2.
You must be assessed and approved by Cash App Afterpay before you can make Cash App Afterpay On FFile available to your customers. Reach out to your Cash App Afterpay account manager for more information.
Set up Cash App Afterpay On File
There are two ways to implement Cash App Afterpay On File: customers can save their Cash App Afterpay details in a virtual wallet outside the checkout flow, or they can save their Cash App Afterpay details during the checkout process itself.
Add Cash App Afterpay to a virtual wallet
Create a Cash App Afterpay grant outside of a checkout flow, in a virtual wallet for your store.
Step 1: Start the approval process
Call the Create Grant Approval endpoint (/v2/grants/approvals). This provides Cash App Afterpay with customer information, grant information, and the URL to direct the customer to when they complete the Cash App Afterpay approval flow.
Request
Response
Step 2: Redirect to checkout
Redirect the customer to checkout using the redirectCheckoutUrl
returned from the Create Grant Approval call. See Create a Checkout for instructions on launching a checkout.
Step 3: Create on file grant
If the checkout is successful, Cash App Afterpay redirects the customer to the URL you specified in the Create Grant Approval call. Next, create the grant by calling the Create Grant endpoint (/v2/grants). This call creates a grant and returns a grant ID. Save this ID for your customer’s future transactions.
Request
Response
Grants can be revoked by the customer or merchant at any time. We recommend subscribing to the AgreementStatusUpdated webhook.
Save Cash App Afterpay details during checkout
Create a Cash App Afterpay grant during the checkout flow. For example, a customer can purchase a monthly subscription and pay for the first installment.
Create the grant before finalizing the purchase. If the purchase is finalized first, the grant can’t be created.
Step 1: Create a checkout
Create a checkout using the Create Checkout endpoint (/v2/checkouts) using the Grants object with type ON_FILE
. See here for instructions on launching a checkout.
Request
Response
Step 2: Create and store the on file grant
If the checkout is successful, Cash App Afterpay redirects the customer to the URL you specified in the Create Checkout call. Next, create the grant by calling the Create Grant endpoint (/v2/grants). This endpoint creates a grant and returns a grant ID. Save this ID for your customer’s future transactions.
Request
Response
Step 3: Capture payment
Now that you have a successful checkout pre-approval and an on file grant, choose when you want to capture the payment. You can either capture immediately or authorize and capture at a later time (authorizations last for 13 days before automatically expiring).
- Immediate capture: Call the Capture Full Payment endpoint (/v2/payments/capture), following the instructions here.
- Deferred capture: Call the Auth endpoint (/v2/payments/auth), following the instructions here.
Request
Response
Create an on file payment
Once a grant is created, you can use the grant ID to place additional Cash App Afterpay orders.
To create an order with the grant, call the Orders API (/v2/orders) and include the stored grant ID in the request.
Cash App Afterpay checks the customer’s eligibility at order creation, so we recommend making this call at the beginning of your checkout process if Cash App Afterpay is the selected payment method. If the order amount changes before the on file payment is created, create a new order with the updated amount; the original order is automatically deleted by Cash App Afterpay.
Once you’ve successfully created an order, use the token from the response to call either the Auth endpoint (/v2/payments/auth) or the Capture Full Payment endpoint (/v2/payments/capture).
On file payments require extra metadata, such as payment initiation actor and subscription details, to ensure compliant usage and improve underwriting decisions. Required fields may include:
- enrichments.initiation.actor (required)
- enrichments.subscription.type (required if subscription)
- enrichments.subscription.interval (required if subscription)
- enrichments.subscription.intervalCount (required if subscription)
Request
Response
Manage existing grants
Once a grant has been created, you can use it to initiate new on file payments or retrieve the grant details using the Retrieve Grant endpoint (/v2/grants/{grantId}).
If a customer decides to remove Cash App Afterpay as a saved payment method on your website, use the Revoke Grant endpoint (/v2/grants/{grantId}/revoke) so that the grant ID can be deactivated by Cash App Afterpay.
Response
Customers can also revoke a grant within the Cash App Afterpay app. Merchants should subscribe to the GrantStatusUpdated webhook.
Merchants can use the consumerReference
field associated with a grant ID to map to their own customer identifier. The email field, which is masked, can be used as a customer-facing identifier.
Considerations
- Customers should be able to revoke grants (unlink Cash App Afterpay as a saved payment method) on your website. Customers should also be notified of any price change to a subscription at least 30 days in advance, or in adherence to any applicable laws and legal requirements.
- Merchants are strongly encouraged to implement Cash App Afterpay’s checkout widget for grants, as it allows merchants to show the required disclosures and payment schedule details on their checkout page prior to customers finalizing their purchases.