Prerequisites
To integrate the Dodo Payments API, you’ll need:- A Dodo Payments merchant account
- API Credentials (API key and webhook secret key) from dashboard
Dashboard Setup
- Navigate to the Dodo Payments Dashboard
- Create a product (one-time payment or subscription)
-
Test the checkout flow:
- Click the share button on the product page
- Open the link in your browser
- Use test card number:
4242 4242 4242 4242
- Enter any future expiration date and any 3-digit CVV
-
Generate your API key:
- Go to Settings > API
- Detailed Guide
- Copy the API key the in env named DODO_PAYMENTS_API_KEY
-
Configure webhooks:
- Go to Settings > Webhooks
- Create a webhook URL for payment notifications
- Detailed Guide
- Copy the webhook secret key in env
API Integration
Payment Links
Dodo Payments supports two types of payment links for integrating payments into your website:- Static Payment Links: Instantly shareable URLs for quick, no-code payment collection.
- Dynamic Payment Links: Programmatically generate payment links with custom details using the API or SDKs.
1. Static Payment Links
Static payment links let you quickly accept payments by sharing a simple URL. You can customize the checkout experience by passing query parameters to pre-fill customer details, control form fields, and add custom metadata.1
Construct your payment link
Start with the base URL and append your product ID:
2
Add core parameters
Include essential query parameters:
-
Number of items to purchase.
-
URL to redirect after payment completion.
The redirect URL will include payment details as query parameters, for example:
https://example.com/?payment_id=pay_ts2ySpzg07phGeBZqePbH&status=succeeded
3
Pre-fill customer information (optional)
Add customer or billing fields as query parameters to streamline checkout.
Supported Customer Fields
Supported Customer Fields
-
Customer’s full name (ignored if firstName or lastName is provided).
-
Customer’s first name.
-
Customer’s last name.
-
Customer’s email address.
-
Customer’s country.
-
Street address.
-
City.
-
State or province.
-
Postal/ZIP code.
-
true or false
4
Control form fields (optional)
You can disable specific fields to make them read-only for the customer. This is useful when you already have the customer’s details (e.g., logged-in users).
disable…
flag to true
:Field | Disable Flag | Required Parameter |
---|---|---|
Full Name | disableFullName | fullName |
First Name | disableFirstName | firstName |
Last Name | disableLastName | lastName |
disableEmail | email | |
Country | disableCountry | country |
Address Line | disableAddressLine | addressLine |
City | disableCity | city |
State | disableState | state |
ZIP Code | disableZipCode | zipCode |
Disabling fields helps prevent accidental changes and ensures data consistency.
5
Add advanced controls (optional)
-
Specifies the payment currency. Defaults to the billing country’s currency.
-
Show or hide the currency selector.
-
Amount in cents (for Pay What You Want pricing only).
-
Custom metadata fields (e.g.,
metadata_orderId=123
).
6
Share the link
Send the completed payment link to your customer. When they visit, all query parameters are collected and stored with a session ID. The URL is then simplified to include just the session parameter (e.g.,
?session=sess_1a2b3c4d
). The stored information persists through page refreshes and is accessible throughout the checkout process.The customer’s checkout experience is now streamlined and personalized based on your parameters.
2. Dynamic Payment Links
Created via API call or our sdk with customer details. Here’s an example: There are two APIs for creating dynamic payment links:- One-time Payment Link API API reference
- Subscription Payment Link API API reference
Make sure you are passing
payment_link = true
to get payment link After creating the payment link, redirect your customers to complete their payment.