Skip to main content
The Payment Link object represents a shareable URL that opens a Yuno-hosted checkout page. Payment links are ideal for invoice collection, social commerce, email billing, and scenarios where you need to collect a payment without building a custom checkout integration.
No-code payments. Payment links use Yuno’s hosted checkout UI. The customer clicks the link, selects a payment method, and completes the transaction. No SDK integration is required on your side.

Object Fields

string
The unique identifier for this payment link (UUID).Example: pl_6e7f8a9b-0c1d-2e3f-4a5b-6c7d8e9f0a1b
string
The shareable payment link URL. Send this to your customer via email, SMS, WhatsApp, or any channel.Example: https://pay.y.uno/pl_6e7f8a9b-0c1d-2e3f-4a5b-6c7d8e9f0a1b
object
The payment amount details.
string
The country where the payment takes place. ISO 3166-1 alpha-2 code. Determines which payment methods are displayed.Example: US
string
Current status of the payment link.Values: ACTIVE, EXPIRED, COMPLETED, CANCELLEDExample: ACTIVE
string
Customer-facing description displayed on the hosted checkout page.Example: Invoice #2026-042 — Web Development Services
string
Your internal order or invoice identifier, used for reconciliation.Example: inv-2026-042
boolean
When true, the link can only be used for a single successful payment. When false, the link remains active and can accept multiple payments until it expires or is cancelled.Example: true
boolean
When true, the customer’s payment method is automatically enrolled (vaulted) after a successful payment. Requires a customer_id to be associated with the link.Example: false
string
ISO 8601 timestamp of when the payment link expires. After this time, the link returns an expiration message to the customer.Example: 2026-03-17T23:59:59.000Z
string
The ID of the Payment Object created when a customer completes payment through this link. null until a payment is made.Example: 8546df3a-b83e-4bb5-a4b3-57aa6385924f
string
ISO 8601 timestamp of when the payment link was created.Example: 2026-03-10T14:00:00.000Z

Example

Status Lifecycle

  • Payment Object. The payment created when a customer uses the link
  • Hosted Checkout. How Yuno’s hosted checkout page works
  • Webhooks. Receive notifications when a payment link is completed