Send funds to your recipient's bank account using Payouts.
If you have any questions about sending payouts, reach out to your Finix Point of Contact or Finix Support.
The first step for making a payout is creating a RECIPIENT Identity to represent whom you'll send funds to. The Identity resource helps manage bank accounts, cards, payout history, and the details of your customers. You can create either PERSONAL or BUSINESS Recipients.
| Required | Optional | Invalid |
|---|---|---|
| Field | type: PERSONAL | type: BUSINESS |
|---|---|---|
Type type | ||
First Name first_name | ||
Last Name last_name | ||
Personal Address personal_address | ||
Business Name business_name | ||
Doing Business As doing_business_as | ||
Business Address business_address | ||
Business Phone business_phone | ||
Personal Email email | ||
Personal Phone phone |
curl https://finix.sandbox-payments-api.com/identities \
-H "Content-Type: application/json" \
-H 'Finix-Version: 2022-02-01' \
-u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e \
-d '{
"entity": {
"first_name": "John",
"last_name": "Doe",
"personal_address": {
"line1": "741 Douglass St",
"line2": "Apartment 7",
"city": "San Mateo",
"region": "CA",
"postal_code": "94114",
"country": "USA"
}
},
"identity_roles": ["RECIPIENT"],
"type": "PERSONAL"
}'{
"id": "ID2dgoqygWvVthU9kQBKz7t4",
"created_at": "2024-07-31T18:28:05.92Z",
"updated_at": "2024-07-31T18:28:05.92Z",
"application": "APgPDQrLD52TYvqazjHJJchM",
"entity": {
"ach_max_transaction_amount": 0,
"amex_mid": null,
"annual_card_volume": 0,
"business_address": null,
"business_name": null,
"business_phone": null,
"business_tax_id_provided": false,
"business_type": null,
"default_statement_descriptor": null,
"discover_mid": null,
"dob": null,
"doing_business_as": null,
"email": null,
"first_name": "John",
"has_accepted_credit_cards_previously": false,
"incorporation_date": null,
"last_name": "Doe",
"max_transaction_amount": 0,
"mcc": null,
"ownership_type": null,
"personal_address": {
"line1": "741 Douglass St",
"line2": "Apartment 7",
"city": "San Mateo",
"region": "CA",
"postal_code": "94114",
"country": "USA"
},
"phone": null,
"principal_percentage_ownership": null,
"short_business_name": null,
"tax_authority": null,
"tax_id_provided": false,
"title": null,
"url": null
},
"identity_roles": ["RECIPIENT"],
"tags": {},
"type": "PERSONAL",
"_links": {
"self": {
"href": "https://finix.sandbox-payments-api.com/identities/ID2dgoqygWvVthU9kQBKz7t4"
},
"verifications": {
"href": "https://finix.sandbox-payments-api.com/identities/ID2dgoqygWvVthU9kQBKz7t4/verifications"
},
"merchants": {
"href": "https://finix.sandbox-payments-api.com/identities/ID2dgoqygWvVthU9kQBKz7t4/merchants"
},
"settlements": {
"href": "https://finix.sandbox-payments-api.com/identities/ID2dgoqygWvVthU9kQBKz7t4/settlements"
},
"authorizations": {
"href": "https://finix.sandbox-payments-api.com/identities/ID2dgoqygWvVthU9kQBKz7t4/authorizations"
},
"transfers": {
"href": "https://finix.sandbox-payments-api.com/identities/ID2dgoqygWvVthU9kQBKz7t4/transfers"
},
"payment_instruments": {
"href": "https://finix.sandbox-payments-api.com/identities/ID2dgoqygWvVthU9kQBKz7t4/payment_instruments"
},
"associated_identities": {
"href": "https://finix.sandbox-payments-api.com/identities/ID2dgoqygWvVthU9kQBKz7t4/associated_identities"
},
"disputes": {
"href": "https://finix.sandbox-payments-api.com/identities/ID2dgoqygWvVthU9kQBKz7t4/disputes"
},
"application": {
"href": "https://finix.sandbox-payments-api.com/applications/APgPDQrLD52TYvqazjHJJchM"
}
}
}Creating Payment Instruments and passing payment details (account number, card number, etc.) directly via the API should only be done for testing purposes and by PCI Level 1 compliant entities. If you aren't a Level 1 PCI-compliant entity, you must use our Tokenization Forms, Mobile Tokenization, or Plaid to accept payment details and comply with PCI regulations.
Now that we've created an Identity for our recipient, we'll need to create a Payment Instrument using the recipient's bank account. A Payment Instrument represents the recipient's payment method that will receive funds. When creating Payment Instruments for Payouts, attempt_bank_account_validation_check must be set to true.
If you have any questions about creating Payment Instruments, reach out to your Finix Point of Contact or Finix Support.
- Sandbox serverhttps://finix.sandbox-payments-api.com/payment_instruments
- Production serverhttps://finix.live-payments-api.com/payment_instruments
curl -i -X POST \
-u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda \
https://finix.sandbox-payments-api.com/payment_instruments \
-H 'Content-Type: application/json' \
-H 'Finix-Version: 2022-02-01' \
-d '{
"account_number": "0000000019",
"account_type": "BUSINESS_CHECKING",
"attempt_bank_account_validation_check": true,
"bank_code": "122105278",
"identity": "IDmj1yA97RS4rMjiQgvK3Vio",
"name": "Smith & Associates Consulting",
"type": "BANK_ACCOUNT"
}'Now that we've associated a Payment Instrument with our recipient's Identity we're ready to provision a recipient account. This is the last step before you can begin paying out a recipient Identity. Luckily you've already done most of the heavy lifting - make one final POST request, and a Merchant resource will get returned.
curl https://finix.sandbox-payments-api.com/identities/ID4a4cYBQU1NoS25b7J7FLBe/merchants \
-H "Content-Type: application/json" \
-H 'Finix-Version: 2022-02-01' \
-u US9bhCUqoTxo7V6di8ceb3Td:e704591a-1972-4b41-9884-6a67f5d7cdbb \
-d '{
"processor": "DUMMY_V1"
}'{
"id": "MUgQ71pEuuXi5t66rhAzvods",
"created_at": "2023-12-07T17:55:43.67Z",
"updated_at": "2023-12-07T17:55:43.67Z",
"application": "AP5Tq3MMxKwHYX7soDncrCQ3",
"card_cvv_required": false,
"card_expiration_date_required": true,
"convenience_charges_enabled": false,
"country": "USA",
"creating_transfer_from_report_enabled": false,
"currencies": ["USD"],
"default_partial_authorization_enabled": false,
"disbursements_ach_pull_enabled": false,
"disbursements_ach_push_enabled": true,
"disbursements_card_pull_enabled": false,
"disbursements_card_push_enabled": true,
"fee_ready_to_settle_upon": "PROCESSOR_WINDOW",
"gateway": null,
"gross_settlement_enabled": false,
"identity": "ID4a4cYBQU1NoS25b7J7FLBe",
"level_two_level_three_data_enabled": false,
"mcc": null,
"merchant_name": "John Smith",
"merchant_profile": "MPjsV92nmV8FvVQi6xJrd3vu",
"mid": null,
"onboarding_state": "PROVISIONING",
"processing_enabled": false,
"processor": "DUMMY_V1",
"processor_details": {},
"ready_to_settle_upon": "PROCESSOR_WINDOW",
"rent_surcharges_enabled": false,
"settlement_enabled": false,
"settlement_funding_identifier": "UNSET",
"surcharges_enabled": false,
"tags": {},
"verification": "VImp8NSKFB7hM3nKSu3NrXny",
"_links": {
"self": {
"href": "https://finix.sandbox-payments-api.com/merchants/MUgQ71pEuuXi5t66rhAzvods"
},
"identity": {
"href": "https://finix.sandbox-payments-api.com/identities/ID4a4cYBQU1NoS25b7J7FLBe"
},
"verifications": {
"href": "https://finix.sandbox-payments-api.com/merchants/MUgQ71pEuuXi5t66rhAzvods/verifications"
},
"merchant_profile": {
"href": "https://finix.sandbox-payments-api.com/merchant_profiles/MPjsV92nmV8FvVQi6xJrd3vu"
},
"application": {
"href": "https://finix.sandbox-payments-api.com/applications/AP5Tq3MMxKwHYX7soDncrCQ3"
},
"verification": {
"href": "https://finix.sandbox-payments-api.com/verifications/VImp8NSKFB7hM3nKSu3NrXny"
}
}
}Next you'll need to create a Transfer. A Transfer represents any flow of funds either to or from a Payment Instrument. In this case a payout to a bank account.
To create a Transfer:
- Include the ID of the
Payment Instrumentof the previously tokenized bank account as thedestination. - In
amount, set the funds to send in cents. In the below example, $150.00 is getting paid out. - Recommended to include an
idempotency_idfield in the payload. For more information, see Idempotent Requests.
- Sandbox serverhttps://finix.sandbox-payments-api.com/transfers
- Production serverhttps://finix.live-payments-api.com/transfers
curl -i -X POST \
-u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda \
https://finix.sandbox-payments-api.com/transfers \
-H 'Content-Type: application/json' \
-H 'Finix-Version: 2022-02-01' \
-d '{
"currency": "USD",
"amount": 15000,
"operation_key": "PUSH_TO_ACH",
"processor": "DUMMY_V1",
"destination": "PI95jTbyzcdjhWsgFEK6vqSU"
}'Transfers can have two possible states: SUCCEEDED and FAILED.
Finix supports two types of bank payout options:
- Next Day ACH: Funds sent via Next Day ACH will be available in a customer's bank account by 9 AM in their local bank time.
- Same Day ACH: Funds sent via Same Day ACH are available Same Day if sent by the cutoff times below.
The table below outlines cutoff times for Next Day ACH and Same Day ACH.
| Bank Payout | Speed Finix Cutoff time | Funds in Recipient's bank account |
|---|---|---|
| Next Day ACH | 9:30 PM ET | By 9 AM the next business day Local Time. (Can vary by bank) |
| Same Day ACH | 11:30 AM ET | 5 PM Local Time of bank |
| Same Day ACH | 2:30 PM ET | End of processing day |
For Next Day ACH, set the operation_key to PUSH_TO_ACH.
- Sandbox serverhttps://finix.sandbox-payments-api.com/transfers
- Production serverhttps://finix.live-payments-api.com/transfers
curl -i -X POST \
-u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda \
https://finix.sandbox-payments-api.com/transfers \
-H 'Content-Type: application/json' \
-H 'Finix-Version: 2022-02-01' \
-d '{
"currency": "USD",
"amount": 15000,
"operation_key": "PUSH_TO_ACH",
"processor": "DUMMY_V1",
"destination": "PI95jTbyzcdjhWsgFEK6vqSU"
}'For Same Day ACH, set the operation_key to PUSH_TO_SAME_DAY_ACH.
Same Day ACH is not enabled by default. If you are interested in Same Day ACH, please contact your Finix representative to enable disbursements_same_day_ach_push_enabled for your Application.
- Sandbox serverhttps://finix.sandbox-payments-api.com/transfers
- Production serverhttps://finix.live-payments-api.com/transfers
curl -i -X POST \
-u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda \
https://finix.sandbox-payments-api.com/transfers \
-H 'Content-Type: application/json' \
-H 'Finix-Version: 2022-02-01' \
-d '{
"currency": "USD",
"amount": 15000,
"operation_key": "PUSH_TO_SAME_DAY_ACH",
"processor": "DUMMY_V1",
"destination": "PI95jTbyzcdjhWsgFEK6vqSU"
}'