Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel
bgColor#79E2F2

Description : This endpoint may be used to get all transactions linked to a specific Payment link

Panel
bgColor#79E2F2

URL: api /payment/payment-link/{id}/transactions

Panel
bgColor#79E2F2

HTTP Method : GET

...

First, you pass the unique id associated to a payment link. Here are the details you'll need:

Code Block

 

 

Panel
bgColor#79E2F2#FFC400

Response Body Response code : 200

Code Block
{
  "isSuccess": true,
  "error": "string",
  "message": "string",
  "responseCode": "string",
  "items": [
    {
      "linkAlias": "string",
      "customerName": "string",
      "paymentChannel": "string",
      "currencyCode": "string",
      "amount": 0,
      "transactionDate": "2023-03-04T20:56:41.036Z",
      "status": "string"
    }
  ],
  "pageParams": {
    "pageNumber": 0,
    "pageSize": 0,
    "totalCount": 0
  }
}

...

...