curl --request POST \
--url https://thirdparty.qonto.com/v2/international/beneficiaries \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"quote_id": "0196edb0-9b6e-7554-9864-d111285a0a44",
"payload": {
"currency": "EUR",
"type": "aba",
"details": {
"address": {
"city": "Paris",
"country": "FR",
"postCode": 75009,
"firstLine": "18 rue du Navarin"
},
"swiftCode": "AAABBB00",
"accountNumber": 123456789,
"accountHolderName": "John Doe"
}
}
}
'{
"beneficiary": {
"id": "0d6273cf-e4d0-469a-a3c8-d2196143470c",
"name": "John Doe",
"country": "US",
"currency": "USD",
"payment_type": "aba",
"account_identifier": "123456789",
"bank_identifier": "AAABBB00",
"branch_identifier": "123456789"
},
"quote": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "PENDING",
"created_at": "2025-01-01T08:00:00.000Z",
"expired_at": "2025-01-01T08:00:00.000Z",
"source_amount": {
"currency": "EUR",
"value": "100.00"
},
"target_amount": {
"currency": "USD",
"value": "110.00"
},
"rate": 1.1,
"fees": {
"total_amount": {
"currency": "EUR",
"value": "10.10"
},
"details": [
{
"currency": "EUR",
"value": "10.10"
}
]
}
},
"target_account_id": "123456"
}OAuth scope: international_transfer.write
Create an international beneficiary
This endpoint is still in beta. Please get in touch with our team if you have any question or feedback: here.
curl --request POST \
--url https://thirdparty.qonto.com/v2/international/beneficiaries \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"quote_id": "0196edb0-9b6e-7554-9864-d111285a0a44",
"payload": {
"currency": "EUR",
"type": "aba",
"details": {
"address": {
"city": "Paris",
"country": "FR",
"postCode": 75009,
"firstLine": "18 rue du Navarin"
},
"swiftCode": "AAABBB00",
"accountNumber": 123456789,
"accountHolderName": "John Doe"
}
}
}
'{
"beneficiary": {
"id": "0d6273cf-e4d0-469a-a3c8-d2196143470c",
"name": "John Doe",
"country": "US",
"currency": "USD",
"payment_type": "aba",
"account_identifier": "123456789",
"bank_identifier": "AAABBB00",
"branch_identifier": "123456789"
},
"quote": {
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "PENDING",
"created_at": "2025-01-01T08:00:00.000Z",
"expired_at": "2025-01-01T08:00:00.000Z",
"source_amount": {
"currency": "EUR",
"value": "100.00"
},
"target_amount": {
"currency": "USD",
"value": "110.00"
},
"rate": 1.1,
"fees": {
"total_amount": {
"currency": "EUR",
"value": "10.10"
},
"details": [
{
"currency": "EUR",
"value": "10.10"
}
]
}
},
"target_account_id": "123456"
}payload object for this endpoint is the same as the one used in the List Beneficiary
requirements endpoint.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.
Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.
The quote unique identifier
"0196edb0-9b6e-7554-9864-d111285a0a44"
Show child attributes
Currency the beneficiary receives money in (ISO 4217 format, alpha 3).
"EUR"
Payment method the beneficiary receives money in (aba or swift_code)
aba, swift_code "aba"
Beneficiary detail contains all the information needed to create a beneficiary. The data is dynamic and should be retrieved through the beneficiary requirements endpoint.
{
"address": {
"city": "Paris",
"country": "FR",
"postCode": 75009,
"firstLine": "18 rue du Navarin"
},
"swiftCode": "AAABBB00",
"accountNumber": 123456789,
"accountHolderName": "John Doe"
}Returns the international beneficiary created
Show child attributes
Unique identifier of the beneficiary
"0d6273cf-e4d0-469a-a3c8-d2196143470c"
The beneficiary's name
"John Doe"
The beneficiary's country
"US"
The currency of the beneficiary's bank account
"USD"
The payment method the beneficiary receives money in
"aba"
The account identifier of the beneficiary
"123456789"
The bank identifier of the beneficiary
"AAABBB00"
The branch identifier of the beneficiary
"123456789"
Show child attributes
Unique identifier for the quote.
"123e4567-e89b-12d3-a456-426614174000"
the quote status
PENDING, FUNDED, EXPIRED, ACCEPTED "PENDING"
The date and time when the quote was created.
"2025-01-01T08:00:00.000Z"
The date and time when the quote will expire
"2025-01-01T08:00:00.000Z"
The exchange rate applied to the transfer.
1.1
Show child attributes
The ID of the beneficiary's target account
"123456"
Was this page helpful?