Get Payment Links
This API call returns multiple Payment link information, like would be seen in the Merchant Portal view of Payment Links.
GET
Payment Links
URLs
Creation of a payment link is achieved by sending a HTTP POST
request to these URLs. The access_token
will be the one received in the Authentication Response.
HTTP Headers
HTTP Header | |||
---|---|---|---|
Field Name | State | Data Type | Description |
Content-Type | Mandatory | String | application/json |
Content-Type | Mandatory | String | Bearer access_token |
Request Details
Create Payment Link request | |||
---|---|---|---|
Field Name | State | Data Type | Description |
terminalId | Mandatory | String | Terminal ID for the Merchant. |
from | Mandatory | String | The Start Date for the search. ISO 8601 format e.g. 2021-11-30T16:00:00Z |
to | Mandatory | String | The End Date for the search. ISO 8601 format e.g. 2021-11-30T16:00:00Z |
You can request payment links up to 365 days old | |||
page | Optional | Integer | The page number, which specifies the set of records to retrueve. Default=1 |
size | Optional | Integer | The number of records to be returned per page. Default=20, Max=5000 |
status | Optional | String | Payment link status. See Statuses for more details. |
Get Payment Links Response
If the request is successful, you will receive a 200 OK
response code, and the following response fields.
Field name | Type | Description |
---|---|---|
totalCount | Integer | The total number of payment links returned in the Response. |
records | Array | An array containing an object for each payment link record returned. |
Get Payment Links Response > Records
The records
Array contains the following fields.
Field name | Type | Description |
---|---|---|
id | String | Payment link ID, the unique reference for this payment link assigned by the DNA Platform. |
amount | Float | The amount of the payment, as a decmal. |
currency | String | Currency e.g. GBP. |
invoiceId | String | The InvoiceId supplied in the Request, if applicable. |
terminalId | String | The terminal ID supplied in the request. |
customerName | String | The Customer name. |
description | String | The description as supplied in the request. |
createdDate | String | The date that the Payment Link was created. |
expirationDate | String | The date that the Payment Link will expire. |
viewedDate | String | The date that the Payment Link was viewed. Null if not applicable. |
attemptedDate | String | The date that the Payment Link was attempted. Null if not applicable. |
paidDate | String | The date that the Payment Link was viewed. Null if not applicable. |
cancelledDate | String | The date that the Payment Link was viewed. Null if not applicable. |
status | String | Payment link status. See Statuses for more details. |
url | String | Full payment link URL |
Example Request and Response
- Request
- Response
{
"terminalId": "4511a14f-61a3-4449-a1c1-7a314ee2374c",
"from": "2020-12-09T00:00:00.000Z",
"to": "2020-12-15T23:59:99.000Z",
"page": 1,
"size": 3
}