List Payment Links
The List Payment Links API allows partners to list all Payment Links for a given merchant ID.
Get all Payment Links associated with the merchant account
GET
https://<PayEngine-host>/api/merchant/:merchant_id/payment-link
Path Parameters
merchant_id*
string
PayEngine merchant ID
Query Parameters
page
string
Page number requested (default: 1).
Results are sorted by creation date in descending order
limit
string
Number of items per page. Default and minimum is 10; max=500
This API will return an array of the following object.
payment_link_id
string
PayEngine system ID for the Payment Link
Required
payment_link_url
string
Payment Link URL
Required
qr_code_url
string
Payment Link QR Code URL
Required
payment_link_status
string
ACTIVE, INACTIVE, COMPLETED, CANCELLED
Required
merchant_id
string
Merchant ID
Required
start_date
string
Start date of Payment Link
optional
end_date
string
End date of Payment Link
Optional
amount
string
Amount charged at every transaction
Required
payment_methods
string
Accepted values - CC_DC, ACH
Required
sales_tax
string
Sales tax included in the amount
Optional
order_number
string
Order or Invoice number.
Alphanumeric (a-z A-Z 0-9) maximum 20 characters
Optional
description
string
Description of Payment Link
Optional
created_at
timestamp
Payment Link creation date
Required
updated_at
timestamp
Payment Link updated at
Required
internal_transaction_id
string
Internal Transaction ID if provided during creation or update
Optional
metadata
Object
Return all the metadata sent in the request
Optional
curl --location --request GET '<API_HOST>/api/merchant/1cc7b594-b80f-4227-a0fa-299c4c6ce8ab/payment-link?page=1&limit=2' \
--header 'Authorization: Basic <API_KEY>'
Last updated