Get payment information
GET
/v1/{payment-service}/{payment-product}/{paymentId}
Path parameters
-
payment-service string Required
Values are
payments
orbulk-payments
. -
payment-product string Required
Values are
sepa-credit-transfers
orinstant-sepa-credit-transfers
. -
paymentId string Required
GET /v1/{payment-service}/{payment-product}/{paymentId}
curl \
-X GET https://api.memo.bank/nextgenpsd2/v1/{payment-service}/{payment-product}/{paymentId} \
-H "Signature: $SIGNATURE"
Response examples (200)
Paymentinitiationwithstatusresponse (generated)
{
"debtorAccount": {
"iban": "string",
"maskedPan": "string",
"currency": "string",
"cashAccountType": "string"
},
"instructedAmount": {
"currency": "string",
"amount": "string"
},
"creditorAccount": {
"iban": "string",
"maskedPan": "string",
"currency": "string",
"cashAccountType": "string"
},
"creditorName": "string",
"endToEndIdentification": "string",
"remittanceInformationUnstructured": "string",
"requestedExecutionDate": "2023-05-04",
"transactionStatus": "ACSC"
}
{
"debtorAccount": {
"iban": "string",
"maskedPan": "string",
"currency": "string",
"cashAccountType": "string"
},
"payments": [
{
"instructedAmount": {
"currency": "string",
"amount": "string"
},
"creditorAccount": {
"iban": "string",
"maskedPan": "string",
"currency": "string",
"cashAccountType": "string"
},
"creditorName": "string",
"endToEndIdentification": "string",
"remittanceInformationUnstructured": "string"
}
],
"requestedExecutionDate": "2023-05-04",
"transactionStatus": "ACSC"
}