Get payment information

GET /v1/{payment-service}/{payment-product}/{paymentId}

Path parameters

Responses

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)
{
  "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",
  "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": "2024-05-04",
  "transactionStatus": "ACSC"
}