Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 7 Next »

Step 1: Get Payment link Information by Alias

Title: Get unique Payment link

Description : This endpoint may be used to get a unique payment link by passing an Alias

URL: api /payment/payment-link/by-alias/{alias}

HTTP Method : GET

Headers : authorization Set value to Bearer SECRET_KEY

string

First, you pass the alias associated to a payment link. The response body below is returned;

 

Response Body Response code : 200

{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "isSuccess": true,
  "error": "string",
  "message": "string",
  "responseCode": "string",
  "value": {
    "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-04T21:03:06.094Z",
    "environment": "string"
  },
  "additionalProp1": "string",
  "additionalProp2": "string",
  "additionalProp3": "string"
}
  • No labels