Skip to main content
POST
/
v1
/
customers
/
{customer_id}
/
recipients
Create recipient
curl --request POST \
  --url https://api.example.com/v1/customers/{customer_id}/recipients \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "iban": "<string>",
  "legal_name": "<string>",
  "country": "<string>",
  "city": "<string>",
  "legal_address": "<string>",
  "bic": "<string>",
  "bank": "<string>",
  "type": "business",
  "intermediate_bic": "<string>",
  "intermediate_bank": "<string>",
  "intermediate_route": "<string>",
  "email": "[email protected]",
  "phone": "<string>",
  "reference": "<string>"
}
'
{
  "recipient": {
    "iban": "<string>",
    "legal_name": "<string>",
    "country": "<string>",
    "city": "<string>",
    "legal_address": "<string>",
    "bic": "<string>",
    "bank": "<string>",
    "type": "business",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "intermediate_bic": "<string>",
    "intermediate_bank": "<string>",
    "intermediate_route": "<string>",
    "email": "[email protected]",
    "phone": "<string>",
    "reference": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

customer_id
string<uuid>
required

Body

application/json
iban
string
required
country
string
required
Required string length: 2
city
string
required
bic
string
required
bank
string
required
type
enum<string>
required
Available options:
business,
personal
intermediate_bic
string
intermediate_bank
string
intermediate_route
string
email
string<email>
phone
string
reference
string

Response

Recipient created successfully

recipient
object