curl --request GET \
--url https://api.mijnklantportaal.nl/v1/payment-links/{linkId}/payments \
--header 'Authorization: Bearer <token>'{
"current_page": 1,
"data": [
{
"id": "plp_abc12345def678",
"paymentLinkId": "plk_abc12345def678",
"currency": "EUR",
"amount": "12.95",
"status": "paid",
"payersName": "John Doe",
"integration": "mollie",
"integrationId": "tr_123abc",
"createdAt": "2024-04-29T21:00:00+02:00"
}
],
"first_page_url": "https://api.mijnklantportaal.nl/v1/payment-links/plk_abc12345def678/payments?page=1",
"from": 1,
"next_page_url": "https://api.mijnklantportaal.nl/v1/payment-links/plk_abc12345def678/payments?page=2,",
"path": "https://api.mijnklantportaal.nl/v1/payment-links/plk_abc12345def678/payments",
"per_page": 15,
"prev_page_url": null,
"to": 15
}curl --request GET \
--url https://api.mijnklantportaal.nl/v1/payment-links/{linkId}/payments \
--header 'Authorization: Bearer <token>'{
"current_page": 1,
"data": [
{
"id": "plp_abc12345def678",
"paymentLinkId": "plk_abc12345def678",
"currency": "EUR",
"amount": "12.95",
"status": "paid",
"payersName": "John Doe",
"integration": "mollie",
"integrationId": "tr_123abc",
"createdAt": "2024-04-29T21:00:00+02:00"
}
],
"first_page_url": "https://api.mijnklantportaal.nl/v1/payment-links/plk_abc12345def678/payments?page=1",
"from": 1,
"next_page_url": "https://api.mijnklantportaal.nl/v1/payment-links/plk_abc12345def678/payments?page=2,",
"path": "https://api.mijnklantportaal.nl/v1/payment-links/plk_abc12345def678/payments",
"per_page": 15,
"prev_page_url": null,
"to": 15
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the Payment Link to get the payments for
Paginated response with payment link payments
Current page of the response
1
Array of Payment Link Payment objects
Show child attributes
Endpoint to go to the first page of objects
"https://api.mijnklantportaal.nl/v1/payment-links/plk_abc12345def678/payments?page=1"
Offset of the current page
1
Endpoint to get the next batch of objects, if available
"https://api.mijnklantportaal.nl/v1/payment-links/plk_abc12345def678/payments?page=2,"
Current used endpoint
"https://api.mijnklantportaal.nl/v1/payment-links/plk_abc12345def678/payments"
Amount of object returned per page. Default is 15 objects
15
Endpoint to get the previous batch of object, if available
null
Next offset of objects
15