Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.

Skip to main content

Add a trusted SEPA beneficiary

Add a trusted beneficiary for SEPA Credit Transfers with the API.

info

Trusted beneficiaries require a Verification of Payee (VoP) check before each transfer to comply with EU regulation.

Add a trusted beneficiary​

  1. Call the addSepaTrustedBeneficiary mutation.
  2. Add your accountId (line 4). The trusted beneficiary is linked to this account.
  3. Add your SEPA beneficiary's name and IBAN (lines 5-6).
  4. Add the AddTrustedSepaBeneficiarySuccessPayload success payload. Consider adding the trustedBeneficiary > id to the payload (lines 12-13).
  5. Add rejections (not shown).

Mutation​

Open in API Explorer
mutation AddBeneficiary {
addTrustedSepaBeneficiary(
input: {
accountId: "$ACCOUNT_ID"
iban: "$TRUSTED_BENEFICIARY_IBAN"
name: "$TRUSTED_BENEFICIARY_NAME"
consentRedirectUrl: "$REDIRECT_URL"
}
) {
... on AddTrustedSepaBeneficiarySuccessPayload {
__typename
trustedBeneficiary {
id
}
}
}
}

Payload​

Notice your new trusted beneficiary's ID is returned in the success payload (line 6).

{
"data": {
"addTrustedSepaBeneficiary": {
"__typename": "AddTrustedSepaBeneficiarySuccessPayload",
"trustedBeneficiary": {
"id": "$TRUSTED_BENEFICIARY_ID"
}
}
}
}

Save a beneficiary when initiating a transfer​

  1. Call the initiateCreditTransfers mutation.
  2. Add the amount and consentRedirectUrl.
  3. Add your accountId. The trusted beneficiary is linked to this account.
  4. Add your SEPA beneficiary's name and IBAN (lines 7-8).
  5. Choose true for the boolean save (line 10).
  6. Add the success payload.
  7. Add rejections (not shown).

Mutation​

Open in API Explorer
mutation SaveBeneficiary {
initiateCreditTransfers(
input: {
creditTransfers: {
amount: { value: "200", currency: "EUR" }
sepaBeneficiary: {
iban: "$TRUSTED_BENEFICIARY_IBAN"
name: "$TRUSTED_BENEFICIARY_NAME"
isMyOwnIban: false
save: true
}
}
consentRedirectUrl: "$REDIRECT_URL"
accountId: "$ACCOUNT_ID"
}
) {
... on InitiateCreditTransfersSuccessPayload {
__typename
payment {
id
}
}
}
}

Payload​

The payload is a typical initiation payload. There's no additional information available about the new trusted beneficiary.

{
"data": {
"initiateCreditTransfers": {
"__typename": "InitiateCreditTransfersSuccessPayload",
"payment": {
"id": "$PAYMENT_ID"
}
}
}
}