Required fields

Different countries support different account types, transfer mechanisms, payment delivery methods.

Understand what minimal data you need to have to successfully transfer a payment

List all the available payment delivery methods

{
  availableDeliveryMethods {
    country
    currency
    method
    requiredFields
  }
}

The response above means that if you want to send euros to Austria (AT) then you'd need a BIC (aka SWIFT) code and an IBAN.

List some of the delivery methods

{
  availableDeliveryMethods(input: { country: FR, currency: EUR }) {
    country
    currency
    method
    requiredFields
  }
}

The response above means that to send euros to France (FR) you have to have ether of:

  • BIC and an account number, or

  • BIC and an IBAN.

Last updated