Recipients
A Recipient represents a third-party entity (individual or company) that your customer wants to send payments to. Each recipient can have multiple bank accounts.
When to Use
✅ Use Recipients when:
- Customer needs to pay vendors/suppliers
- Customer needs to pay employees/contractors
- Customer needs to send money to any third party
- You need to manage multiple bank accounts for the same payee
❌ Do NOT use Recipients when:
- Adding customer's own bank account for withdrawals (use External Accounts instead)
API Endpoints
Recipient Management:
| Method | Endpoint | Description |
|---|---|---|
| POST | /v1/customers/{customer_id}/recipients | Create a new recipient |
| GET | /v1/customers/{customer_id}/recipients/list | List all recipients |
| GET | /v1/customers/{customer_id}/recipients/{recipient_id} | Get recipient details |
| PUT | /v1/customers/{customer_id}/recipients/{recipient_id} | Update recipient info |
| DELETE | /v1/customers/{customer_id}/recipients/{recipient_id} | Delete a recipient |
Recipient Bank Account Management: (with endpoint prefix: /v1/customers/{customer_id})
| Method | Endpoint | Description |
|---|---|---|
| POST | /recipients/{recipient_id}/bank_accounts | Add bank account to recipient |
| GET | /recipients/{recipient_id}/bank_accounts/list | List recipient's bank accounts |
| PUT | /recipients/{recipient_id}/bank_accounts/{id} | Update bank account |
| DELETE | /recipients/{recipient_id}/bank_accounts/{id} | Remove bank account |
Request Example: Create Recipient with Bank Account
{
"business_type": "COMPANY",
"company_name": "Acme Software Inc",
"relationship": "VENDOR",
"address": {
"address_line1": "123 Tech Street",
"city": "San Francisco",
"region": "CA",
"postal_code": "94105",
"country": "USA"
},
"bank_accounts": [
{
"network": "US_FEDWIRE",
"account_holder_name": "Acme Software Inc",
"currency": "USD",
"country_code": "USA",
"account_number": "9876543210",
"institution_id": "021000089",
"institution_name": "Citibank N.A."
}
]
}Request Example: Add Bank Account to Existing Recipient
{
"network": "US_ACH",
"account_holder_name": "Acme Software Inc",
"currency": "USD",
"country_code": "USA",
"account_number": "9876543210",
"institution_id": "021000089",
"institution_name": "Citibank N.A."
}Key Validation Rules
- Account Holder Name Matching: The
account_holder_namemust match the recipient's name with ≥80% similarity - Business Type: INDIVIDUAL or COMPANY
- Required Name Fields:
- INDIVIDUAL:
first_name,last_name - COMPANY:
company_name
- INDIVIDUAL:
- Relationship Types: VENDOR, EMPLOYEE, SUPPLIER, CONTRACTOR, etc.
Data Model
Customer
└── Recipients (third-party entities)
├── Recipient 1 (Vendor: Acme Software Inc)
│ ├── Bank Account A (USD Wire)
│ └── Bank Account B (ACH)
│
├── Recipient 2 (Employee: John Smith)
│ └── Bank Account C (ACH)
│
└── Recipient 3 (Supplier: Global Parts Ltd)
└── Bank Account D (SWIFT)
Updated about 18 hours ago
