Overview
Payees are the recipients of your payouts. This guide covers best practices for managing them at scale — creating different types, attaching multiple payment instruments, and handling common scenarios.Individual vs. business payees
Choose the right type based on who you are paying:| Type | Use when | Required fields |
|---|---|---|
individual | Paying a person (freelancer, contractor, employee, refund customer) | first_name, last_name, country |
business | Paying a company (supplier, vendor, partner) | company_name, country |
Create a payee
Response
Adding payment instruments
A payee can have multiple instruments — different ways to receive payment. For example, a contractor might have both a US bank account and a UK bank account.instrument_id field.
Listing payees
Retrieve payees with cursor-based pagination:Response
has_more is true, passing next_cursor as the cursor parameter.
Listing instruments for a payee
Response
Updating a payee
Deletion considerations
When you delete a payee:- In-progress payouts to that payee will still complete
- New payouts to that payee will fail
- Historical data (completed payouts) is preserved for audit
Best practices
Validate bank details early
Validate bank details early
Create payees and verify their instrument details well before you need to send a payout. This catches errors (wrong account number, invalid routing number) before time-sensitive payments.
Use email for notifications
Use email for notifications
Include the payee’s email when creating them. This allows Anton to send delivery confirmations where applicable.
One payee per recipient
One payee per recipient
Do not create duplicate payees for the same person. Use instruments to add multiple payment methods to a single payee.
Store your mapping
Store your mapping
Keep a mapping between your internal user/vendor IDs and Anton payee IDs. This makes it easy to create payouts from your business logic.
Use metadata for internal tracking
Use metadata for internal tracking
Attach metadata to payees with your internal identifiers. This simplifies reconciliation and lookup across systems.