Step 1: Call Get all Payment links Endpoint
Title: Get all Payment link
Description : This endpoint may be used to get all payment link associated with a Merchant’s Account
URL: api /payment/payment-link/
HTTP Method : GET
Headers : authorization Set value to Bearer SECRET_KEY
string
Query Request Params
filterParam string (query) filterParam pageSize integer($int32) (query) pageSize pageNumber integer($int32) (query)
Response Body Response code : 200
{ "isSuccess": true, "error": "string", "message": "string", "responseCode": "string", "items": [ { "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6", "name": "string", "description": "string", "alias": "string", "link": "string", "amountInfo": { "currencyCode": "string", "amount": 0 }, "linkType": "string", "status": "string", "createdDate": "2023-03-15T16:32:38.605Z", "environment": "string" } ], "pageParams": { "pageNumber": 0, "pageSize": 0, "totalCount": 0 } }
Add Comment