Initiate a payment
Path parameters
-
Values are
payments
orbulk-payments
. -
Values are
sepa-credit-transfers
orinstant-sepa-credit-transfers
.
POST /v1/{payment-service}/{payment-product}
curl \
-X POST https://api.memo.bank/nextgenpsd2/v1/{payment-service}/{payment-product} \
-H "Content-Type: application/json" \
-H "Signature: $SIGNATURE" \
-d '{"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":"2024-05-04"}'
Request examples
Paymentinitiationjson (generated)
# Headers
Signature: $SIGNATURE
# Payload
{
"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": "2024-05-04"
}
# Headers
Signature: $SIGNATURE
# Payload
{
"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": "2024-05-04"
}
Response examples (default)
{
"transactionStatus": "ACSC",
"paymentId": "string",
"_links": {
"self": {
"href": "string"
},
"status": {
"href": "string"
}
},
"psuMessage": "string",
"tppMessages": [
{
"category": "ERROR",
"code": "ACCESS_EXCEEDED",
"path": "string",
"text": "string"
}
]
}