GET
/
payment_link
/
{payment_link_id}
curl --request GET \
  --url https://api.staging.bnplx.io/payment_link/{payment_link_id} \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "client_secret": "<string>"
}'
{
  "payment_link_id": "<string>",
  "merchant_id": "<string>",
  "link_to_pay": "<string>",
  "amount": 6540,
  "created_at": "2023-11-07T05:31:56Z",
  "expiry": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "status": "active",
  "currency": "AED",
  "secure_link": "<string>"
}

Authorizations

api-key
string
header
required

Use the API key created under your merchant account from the GreenBanana dashboard. API key is used to authenticate API requests from your merchant server only. Don't expose this key on a website or embed it in a mobile application.

Path Parameters

The identifier for payment link

Body

application/json

Response

200
application/json
Gets details regarding payment link

The response is of type object.