- quote_id: The ID of the quote you obtained in the previous step
- beneficiary_id: The ID of the beneficiary if you have one, null otherwise
- payload.currency: The currency of the transfer (e.g., EUR, USD, GBP)
requirements field is an array. Each item corresponds to a payment method available for the beneficiary.
The user has to select one of them, and you will have to collect the required information for that payment method.
For instance, let’s say the requirements looks like that:
swift, then you will have to collect the following information: bank_name and
bank_address. If the user selects aba, then you will have to collect bank_account_identifier.
When you collect the required information, you may be asked to call again this endpoint (boolean refresh_requirements_on_change).
To do so, you will have to provide the same parameters as before, but you will also have to provide the collected information in the payload field:
- payload.type: The payment method selected by the user (e.g.,- swift,- aba)
- payload.details: An object containing the collected information, where each- keyis the name of the field and the- valueis the value provided by the user.
bank.address.street means that the field is an object with a street property, you should call our api
with the following payload:Authorizations
Bearer authorization header: Bearer <token>, where <token> is the access token received from the authorization server at the end of the OAuth 2.0 flow.
Headers
Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.
Language to be used to display the requirements. Languages supported: en, it, es, de, fr, pt
"en"
Body
Unique identifier for the quote.
"0196edb0-9b6e-7554-9864-d111285a0a44"
Data collected from the user to create the beneficiary.
Unique identifier for the beneficiary (null if creating a new beneficiary).
"0d6273cf-e4d0-469a-a3c8-d2196143470c"
Response
Returns the list of requirements for the given beneficiary and quote.