Verify General Payment Link
Verify a general payment link and retrieve the currencies available for checkout.
GET {{host}}/v1/pay/general/verify/{code}Path Parameters
| Field | Data Type | Required | Description |
|---|---|---|---|
| code | string | Yes | General payment link code. |
{
"status": true,
"message": "Success",
"code": 200,
"data": {
"status": "PENDING",
"reference": "KYSHI-1778623597453",
"paymentLink": {
"code": "GPL_abc123",
"url": "https://pay.kyshi.co/GPL_abc123",
"expiresAt": null
},
"amount": {
"value": 100,
"currency": "USD"
},
"availableCurrencies": ["NGN", "GHS", "KES"],
"feeBearer": "CUSTOMER",
"taxChargeable": "EXCLUSIVE",
"metadata": [
{
"name": "Website design",
"amount": 100,
"quantity": 1
}
]
}
}Updated 7 days ago
