Listing payment links
GET
/api/public/v1/payment_links
This endpoint returns a list of payment links with pagination.
Headers
Content-Type
application/vnd.api+json
Authorization
Bearer <api_key>
URL Parameters
order
string
Order in which the list of records should be returned. Can be created_at
.
order_type
string
Order type. Can be either asc
or desc
.
page
number
Page for which you want to return records.
per_page
number
Number of records per page to return.
reference
number
Payment link reference
.
Response Body
data.id
string
Payment link ID.
data.type
string
Entity type returned. Always paymentLinks
.
data.attributes
object
Set of payment attributes.
data.attributes.amount
string
Payment amount to display to end users.
data.attributes.currency
string
Payment currency to display to end users. Refer to Supported currencies.
data.attributes.networkName
string
Payment network name. E.g. Tron (TRC20)
. Refer to Supported currencies.
data.attributes.reference
string
The custom reference ID to tie the payment to end-user.
data.attributes.hostedPageUrl
The payment hosted page URL to redirect your end-users to.
data.attributes.status
string
Payment link status context. Can be pending
, completed
, expired
.
data.attributes.expiresAt
string
Payment link expiry date and time.
data.attributes.createdAt
string
Date and time a payment link was created at.
data.relationships.target
object
This object contains ID of the child Invoice or Payout generated by the Payment Link.
Response
Last updated