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-6c7d8e9f0a1bstring
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-6c7d8e9f0a1bobject
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:
USstring
Current status of the payment link.Values:
ACTIVE, EXPIRED, COMPLETED, CANCELLEDExample: ACTIVEstring
Customer-facing description displayed on the hosted checkout page.Example:
Invoice #2026-042 — Web Development Servicesstring
Your internal order or invoice identifier, used for reconciliation.Example:
inv-2026-042boolean
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: trueboolean
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: falsestring
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.000Zstring
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-57aa6385924fstring
ISO 8601 timestamp of when the payment link was created.Example:
2026-03-10T14:00:00.000ZExample
Status Lifecycle
Related Endpoints
- Create Payment Link.
POST /v1/payment-links - Get Payment Link.
GET /v1/payment-links/{payment_link_id} - Cancel Payment Link.
POST /v1/payment-links/{payment_link_id}/cancel
Related Concepts
- 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