Simulate an incoming SEPA transfer

POST /v1/sandbox/incoming_transfers

This endpoint allows you to simulate an incoming SEPA transfer to your account.

application/json

Body Required

  • amount integer(int64) Required

    Amount of the transfer, in cents. The currency is always EURO.

    Minimum value is 1.

  • local_iban string Required

    Existing IBAN to be used as the destination of the transfer. Can be the main IBAN of an account or a virtual IBAN.

    Format should match the following pattern: [A-Z]{2}[0-9]{2}[a-zA-Z0-9]{1,30}.

  • message string

    Message attached to this transfer, visible to all involved parties.

  • Unique identification to unambiguously identify the transaction. This identification is passed on, unchanged, throughout the entire end-to-end chain. It can be used for reconciliation or to link tasks relating to the transaction.

    Minimum length is 1, maximum length is 35. Format should match the following pattern: [a-zA-Z0-9\-\?\:\(\)\.\,\'\+\ ]{1,35}.

  • Name of the debtor. Allow you to provide the name that will be used for the transaction. If not provided, a default value will be used.

  • IBAN of the debtor. Allow you to provide the IBAN that will be used for the transaction. If not provided, a default value will be used.

    Format should match the following pattern: [A-Z]{2}[0-9]{2}[a-zA-Z0-9]{1,30}.

POST /v1/sandbox/incoming_transfers
curl \
 -X POST https://api.sandbox.memo.bank/v1/sandbox/incoming_transfers \
 -H "Content-Type: application/json" \
 -d '{"amount":500,"local_iban":"FR6430003000509825397888D64","message":"invoice no12345","end_to_end_id":"b0bfb42baa2642c2af0ca3e880fcd590","counterparty_name":"John Doe","counterparty_iban":"FR2512739000308553756377J95"}'
Request examples
{
  "amount": 500,
  "local_iban": "FR6430003000509825397888D64",
  "message": "invoice no12345",
  "end_to_end_id": "b0bfb42baa2642c2af0ca3e880fcd590",
  "counterparty_name": "John Doe",
  "counterparty_iban": "FR2512739000308553756377J95"
}