Skip to main content
POST
/
v1
/
beneficiaries
Create a new beneficiary
curl --request POST \
  --url https://api.example.com/v1/beneficiaries \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accounts": [
    {
      "currency": "EUR",
      "data": {
        "accountHolderName": "John Doe",
        "bic": "DEUTDEFF",
        "iban": "DE89370400440532013000"
      },
      "type": "iban"
    }
  ],
  "country": "DE",
  "name": "John Doe",
  "address": "Hauptstraße 123",
  "addressLine2": "Apt 4B, 3rd Floor",
  "city": "Berlin",
  "countrySubdivision": "NY",
  "dateOfBirth": "1985-05-20",
  "email": "john.doe@example.com",
  "id": "cc82fa1d-fc7a-478c-a734-d3bce40464e7",
  "middleName": "James",
  "notes": "Regular client, prefers SEPA Instant",
  "postcode": "10115",
  "type": "individual"
}
'
import requests

url = "https://api.example.com/v1/beneficiaries"

payload = {
"accounts": [
{
"currency": "EUR",
"data": {
"accountHolderName": "John Doe",
"bic": "DEUTDEFF",
"iban": "DE89370400440532013000"
},
"type": "iban"
}
],
"country": "DE",
"name": "John Doe",
"address": "Hauptstraße 123",
"addressLine2": "Apt 4B, 3rd Floor",
"city": "Berlin",
"countrySubdivision": "NY",
"dateOfBirth": "1985-05-20",
"email": "john.doe@example.com",
"id": "cc82fa1d-fc7a-478c-a734-d3bce40464e7",
"middleName": "James",
"notes": "Regular client, prefers SEPA Instant",
"postcode": "10115",
"type": "individual"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
accounts: [
{
currency: 'EUR',
data: {accountHolderName: 'John Doe', bic: 'DEUTDEFF', iban: 'DE89370400440532013000'},
type: 'iban'
}
],
country: 'DE',
name: 'John Doe',
address: 'Hauptstraße 123',
addressLine2: 'Apt 4B, 3rd Floor',
city: 'Berlin',
countrySubdivision: 'NY',
dateOfBirth: '1985-05-20',
email: 'john.doe@example.com',
id: 'cc82fa1d-fc7a-478c-a734-d3bce40464e7',
middleName: 'James',
notes: 'Regular client, prefers SEPA Instant',
postcode: '10115',
type: 'individual'
})
};

fetch('https://api.example.com/v1/beneficiaries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/beneficiaries",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'accounts' => [
[
'currency' => 'EUR',
'data' => [
'accountHolderName' => 'John Doe',
'bic' => 'DEUTDEFF',
'iban' => 'DE89370400440532013000'
],
'type' => 'iban'
]
],
'country' => 'DE',
'name' => 'John Doe',
'address' => 'Hauptstraße 123',
'addressLine2' => 'Apt 4B, 3rd Floor',
'city' => 'Berlin',
'countrySubdivision' => 'NY',
'dateOfBirth' => '1985-05-20',
'email' => 'john.doe@example.com',
'id' => 'cc82fa1d-fc7a-478c-a734-d3bce40464e7',
'middleName' => 'James',
'notes' => 'Regular client, prefers SEPA Instant',
'postcode' => '10115',
'type' => 'individual'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://api.example.com/v1/beneficiaries"

payload := strings.NewReader("{\n \"accounts\": [\n {\n \"currency\": \"EUR\",\n \"data\": {\n \"accountHolderName\": \"John Doe\",\n \"bic\": \"DEUTDEFF\",\n \"iban\": \"DE89370400440532013000\"\n },\n \"type\": \"iban\"\n }\n ],\n \"country\": \"DE\",\n \"name\": \"John Doe\",\n \"address\": \"Hauptstraße 123\",\n \"addressLine2\": \"Apt 4B, 3rd Floor\",\n \"city\": \"Berlin\",\n \"countrySubdivision\": \"NY\",\n \"dateOfBirth\": \"1985-05-20\",\n \"email\": \"john.doe@example.com\",\n \"id\": \"cc82fa1d-fc7a-478c-a734-d3bce40464e7\",\n \"middleName\": \"James\",\n \"notes\": \"Regular client, prefers SEPA Instant\",\n \"postcode\": \"10115\",\n \"type\": \"individual\"\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.example.com/v1/beneficiaries")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"accounts\": [\n {\n \"currency\": \"EUR\",\n \"data\": {\n \"accountHolderName\": \"John Doe\",\n \"bic\": \"DEUTDEFF\",\n \"iban\": \"DE89370400440532013000\"\n },\n \"type\": \"iban\"\n }\n ],\n \"country\": \"DE\",\n \"name\": \"John Doe\",\n \"address\": \"Hauptstraße 123\",\n \"addressLine2\": \"Apt 4B, 3rd Floor\",\n \"city\": \"Berlin\",\n \"countrySubdivision\": \"NY\",\n \"dateOfBirth\": \"1985-05-20\",\n \"email\": \"john.doe@example.com\",\n \"id\": \"cc82fa1d-fc7a-478c-a734-d3bce40464e7\",\n \"middleName\": \"James\",\n \"notes\": \"Regular client, prefers SEPA Instant\",\n \"postcode\": \"10115\",\n \"type\": \"individual\"\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.example.com/v1/beneficiaries")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"accounts\": [\n {\n \"currency\": \"EUR\",\n \"data\": {\n \"accountHolderName\": \"John Doe\",\n \"bic\": \"DEUTDEFF\",\n \"iban\": \"DE89370400440532013000\"\n },\n \"type\": \"iban\"\n }\n ],\n \"country\": \"DE\",\n \"name\": \"John Doe\",\n \"address\": \"Hauptstraße 123\",\n \"addressLine2\": \"Apt 4B, 3rd Floor\",\n \"city\": \"Berlin\",\n \"countrySubdivision\": \"NY\",\n \"dateOfBirth\": \"1985-05-20\",\n \"email\": \"john.doe@example.com\",\n \"id\": \"cc82fa1d-fc7a-478c-a734-d3bce40464e7\",\n \"middleName\": \"James\",\n \"notes\": \"Regular client, prefers SEPA Instant\",\n \"postcode\": \"10115\",\n \"type\": \"individual\"\n}"

response = http.request(request)
puts response.read_body
{
  "accounts": [
    {
      "createdAt": "2024-01-15T10:30:00Z",
      "currency": "EUR",
      "data": {
        "bic": "DEUTDEFF",
        "iban": "DE89370400440532013000"
      },
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "status": "active",
      "type": "iban",
      "updatedAt": "2024-01-15T10:35:00Z",
      "resolutionStatus": "resolved",
      "resolvedAccountName": "JANE DOE"
    }
  ],
  "country": "DE",
  "createdAt": "2024-01-15T10:30:00Z",
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "name": "John Doe",
  "status": "active",
  "type": "individual",
  "updatedAt": "2024-01-15T10:30:00Z",
  "address": "Hauptstraße 123",
  "addressLine2": "Apt 4B, 3rd Floor",
  "city": "Berlin",
  "countrySubdivision": "NY",
  "dateOfBirth": "1985-05-20",
  "email": "john.doe@example.com",
  "middleName": "James",
  "notes": "Regular client, prefers SEPA Instant",
  "postcode": "10115"
}
{
"details": [
{
"field": "accounts.0.data.crAccount",
"message": "crAccount must be exactly 10 digits for Nigerian accounts",
"value": "12345678901"
}
],
"error": "BAD_REQUEST",
"message": "Validation failed",
"path": "/v1/beneficiaries",
"statusCode": 400,
"timestamp": "2024-01-15T10:30:00.000Z"
}

Authorizations

Authorization
string
header
required

Enter Auth0 JWT token

Body

application/json
accounts
object[]
required

Array of payment accounts for this beneficiary

Example:
[
{
"currency": "EUR",
"data": {
"accountHolderName": "John Doe",
"bic": "DEUTDEFF",
"iban": "DE89370400440532013000"
},
"type": "iban"
}
]
country
string
required

Country code (ISO 3166-1 alpha-2, e.g., "DE", "GB", "US")

Required string length: 2
Example:

"DE"

name
string
required

Full name of the beneficiary (2-100 characters)

Required string length: 2 - 100
Example:

"John Doe"

address
string

Address line 1 of the beneficiary (max 200 characters)

Maximum string length: 200
Example:

"Hauptstraße 123"

addressLine2
string

Address line 2 of the beneficiary (max 200 characters)

Maximum string length: 200
Example:

"Apt 4B, 3rd Floor"

city
string

City of the beneficiary. May be required depending on corridor — use GET /v1/payouts/requirements to check.

Maximum string length: 100
Example:

"Berlin"

countrySubdivision
string

Country subdivision code (e.g., US state code "NY", "CA")

Maximum string length: 50
Example:

"NY"

dateOfBirth
string

Date of birth in YYYY-MM-DD format (individual beneficiaries only). Required for individual crypto counterparties when the Sumsub Travel Rule gate is enabled.

Example:

"1985-05-20"

email
string<email>

Email address of the beneficiary

Example:

"john.doe@example.com"

id
string<uuid>

UUID of an existing beneficiary. If provided, other fields are ignored and the existing beneficiary is referenced.

Example:

"cc82fa1d-fc7a-478c-a734-d3bce40464e7"

middleName
string

Middle name of the beneficiary (max 100 characters)

Maximum string length: 100
Example:

"James"

notes
string

Optional notes about the beneficiary (max 500 characters)

Maximum string length: 500
Example:

"Regular client, prefers SEPA Instant"

postcode
string

Postal code of the beneficiary

Maximum string length: 20
Example:

"10115"

type
enum<string>
default:individual

Beneficiary type. Defaults to "individual" if not provided.

Available options:
individual,
business
Example:

"individual"

Response

Beneficiary created successfully

accounts
object[]
required

Array of associated payment accounts

country
string
required

Country code (ISO 3166-1 alpha-2)

Example:

"DE"

createdAt
string<date-time>
required

ISO timestamp when the beneficiary was created

Example:

"2024-01-15T10:30:00Z"

id
string<uuid>
required

Unique identifier for the beneficiary

Example:

"123e4567-e89b-12d3-a456-426614174000"

name
string
required

Full name of the beneficiary

Example:

"John Doe"

status
enum<string>
required

Beneficiary status

Available options:
active,
inactive,
suspended
Example:

"active"

type
enum<string>
required

Beneficiary type

Available options:
individual,
business
Example:

"individual"

updatedAt
string<date-time>
required

ISO timestamp when the beneficiary was last updated

Example:

"2024-01-15T10:30:00Z"

address
string

Address line 1 of the beneficiary

Example:

"Hauptstraße 123"

addressLine2
string

Address line 2 of the beneficiary

Example:

"Apt 4B, 3rd Floor"

city
string

City of the beneficiary

Example:

"Berlin"

countrySubdivision
string

Country subdivision code (e.g., US state code "NY", "CA")

Example:

"NY"

dateOfBirth
string

Date of birth in YYYY-MM-DD format (individual beneficiaries only).

Example:

"1985-05-20"

email
string

Email address of the beneficiary

Example:

"john.doe@example.com"

middleName
string

Middle name of the beneficiary

Example:

"James"

notes
string

Notes about the beneficiary

Example:

"Regular client, prefers SEPA Instant"

postcode
string

Postal code of the beneficiary

Example:

"10115"