Payment links
Payment links provide a shareable URL for a catalog price. They are suitable for sales emails, social posts, and no-code storefronts. Each link has a plink_ ID and a public path at /l/{slug}.
How they work
When a customer opens a payment link, Rollo creates a Checkout Session bound to that price and your current theme. One-time prices produce a single charge; recurring prices (including trials) follow the subscription flow described in Subscriptions. Completed payments emit the same webhook events as API-created sessions—ensure your endpoint is subscribed to the relevant types.
Create via API
POST /v1/payment_links
Authorization: Bearer rk_live_...
Content-Type: application/json
{
"name": "Pro plan",
"price": "price_...",
"slug": "pro-plan"
}
{
"id": "plink_...",
"url": "https://rollopayments.com/l/pro-plan",
"active": true
}Dashboard
From Payment Links, select a product price, optional slug, and share the URL. View and conversion counts update as customers open and complete checkout.