List payment links
Ecom API
List Payment Links
Return a paginated list of payment links accessible by your API key
GET
List payment links
Results are returned in the
data array with a pagination object. Links are scoped automatically to your API key’s entity level.Filtering
| Parameter | Description |
|---|---|
status | ACTIVE, CONSUMED, EXPIRED, or CANCELLED |
merchant_branch_reference_number | Filter by branch. Only applicable for partner- or merchant-level keys. |
created_after / created_before | ISO 8601 timestamps to bound the creation window |
Cursor pagination
To fetch the next page, pass thenext_cursor value from the previous response as the cursor query parameter:
has_more is false, you have reached the last page.
Required scope
payment_links.readAuthorizations
API key passed as a bearer token. Use sk_live_ keys for production and sk_test_ keys for sandbox. Keys are provisioned during merchant onboarding.
Query Parameters
Filter by payment link status. Current status of the payment link.
Available options:
ACTIVE, CONSUMED, EXPIRED, CANCELLED Filter by branch reference number. Only applicable for partner- or merchant-level keys.
ISO 8601 timestamp. Only return links created after this time.
ISO 8601 timestamp. Only return links created before this time.
Number of results per page.
Required range:
1 <= x <= 200Opaque pagination token from a previous response's next_cursor.