Skip to main content

Step 4. Get list of payments

Maxime avatar
Written by Maxime
Updated over 4 months ago

GET /api/bankaccount/<IBAN>/payment/<PAYMENTID>
Functional name: getPaymentsList

  • userId – unique user ID in PKO (TPP) app. Will be translated to internal identified in our model

  • IBAN


GET /api/bankaccount/PL47212110090000000235698742/payment?userId=833xdd3
​
​Example success response


{
"success": true,
"data": {
"transactions": [
{
"status": "Pending",
"transactionId": "1234"
},
{
"status": "Completed",
"transactionId": "1288"
}
]
}
}

Did this answer your question?