Routing payments
Define processor routes—ordered lists of payment processors—to control how payments are attempted. When a customer pays, PaymentKit tries each processor in order until one succeeds.
Before you begin
Make sure you have:
- At least two connected payment processors.
- Processor IDs handy (find them in Orchestration > Payment processors or via
GET /api/{account_id}/payments/processors).
If you only have one processor connected, PaymentKit will only use your default processor. At this time, payment routes can only be defined via the API.
How payment routes work
PaymentKit will try each processor in the order of your defined route until one succeeds. If a processor is unavailable or doesn’t support the currency, PaymentKit skips to the next processor automatically.
Routes are resolved in precedence order: a route passed on the checkout session takes priority, then the account’s default route. If no route is configured, PaymentKit uses your default processor.
Create a route
name and a non-empty processors list are required; description is optional.
Response:
Use a route in checkout
Pass a single processor_route_id when creating a checkout session. The route itself contains an ordered list of processors — PaymentKit tries each one sequentially until a payment succeeds. You don’t pass multiple processor IDs directly; instead, define the processor list inside the route and reference the route by its ID.
One route ID, multiple processors. The processor_route_id field accepts a single route ID (e.g., proute_xyz789), not an array of processor IDs. To control which processors are used and in what order, configure them within the route via POST /api/{account_id}/processor-routes. For cascade pricing, each tier (cascade_line_items[]) can specify its own processor_route_id to use a different fallback chain.
Pass the processor_route_id when creating a checkout session:
Set a default route (optional)
Apply a route to all checkout sessions without needing to specify it each time. Set default_processor_route_id to null to clear the default.
Manage routes
List all routes:
Update a route:
Delete a route:
A route cannot be deleted while it is still referenced by a checkout session, used by a cascade pricing tier, or set as the account default. Deletion attempts on a referenced route return 409 Conflict.
View route audit log
Track changes to a processor route over time. The audit log records who made changes, what changed, and when.
Response:
Audit log fields:
Audit logs are retained even after a route is deleted. Query by route external ID to see historical changes.
MIT cascade settings
Control how recurring/subscription payments (Merchant Initiated Transactions) retry across processors when the last successful processor is unavailable.
By default, MITs use only the subscription’s last successful processor. Enable cascade to try fallback processors in order when the primary fails.
Get MIT settings
Response:
Update MIT settings
Settings fields:
How MIT cascade works:
- PaymentKit attempts payment with the subscription’s last successful processor
- If that fails and
cascading_enabledistrue, it triesfallback_processor_1_id - If that also fails, it tries
fallback_processor_2_id - After any success, that processor becomes the new “last successful” for future MITs
Use MIT cascading for high-value recurring payments where maximizing collection success outweighs the cost of multiple processor attempts.