Get payments for a link
List all payments received through a specific payment link. Fulfill only when a payment's `settlementStatus` is `settled`.
GET
/api/payment-links/{linkId}/payments
Responses
Payments for the link
application/json
{
"payments": [
{
"id": "<integer>",
"payerAddress": "<string>",
"amount": "<string>",
"currency": "<string>",
"settlementStatus": "<string>",
"settlementTxHash": "<string>",
"createdAt": "<string>"
}
]
}