Search
Menu
Edit Template

Integrate

Brite Instant Payouts

Brite offers withdrawals that allow the customer to receive funds instantly. Withdrawals through Brite can be done directly via the API.

Integration

To create a withdrawal, you’ll need a bank_account_id, which can be obtained in one of three ways: through a bank account selection session, a deposit session, or directly via the API using bank_account.create. This API-only solution supports all types of withdrawals, including closed-loop withdrawals.
Click on the image to view it in full size
Initiate a withdrawal transaction by calling transaction.create_withdrawal. Use the bank_account_id created through any of the ways described in bank account management.
				
					{
    "callbacks": [
        {
            "url": "string",  // required
            "transaction_state": 1  // required
        }
    ],
    "amount": 0,  // required
    "merchant_reference": "string",
    "bank_account_id": "string",  // required
    "statement_reference": "string"  // required for DE. Not available for SE and FI
}
				
			
Get session details from transaction.get endpoint.