Skip to main content
Deprecated in V4: Payment Links have been merged into the Invoice model. Invoice objects now include payment_link and payment_link_expires_at fields.
In V4, Payment Links are no longer a separate entity. Instead, payment link functionality is integrated directly into the Invoice model, providing a more unified approach to managing billable items and their payment options.

Migration Guide

Previous V3 Approach

GET /v3/payments/payment-links

New V4 Approach

GET /v4/payments/invoices
The invoice response now includes:
  • payment_link - URL where contact can pay
  • payment_link_expires_at - Expiration date for the link

Key Changes

V3 Payment Link FieldV4 Invoice Field
linkpayment_link
expires_atpayment_link_expires_at
amounttotal_amount
statusstatus
line_itemsline_items
See the Invoice overview for the complete V4 schema.