Payout process
To help you get started with the payout process, we’ll walk through the steps of creating your first payout using our API. We’ll assume that you have completed the onboarding process, been whitelisted for API services, created your OAuth credentials, obtained an access token, and set up your webhooks for both collections and payouts. The following steps will guide you through the payout process:Step 1: Create a customer
Before you can make any payouts, you need to associate them with a customer. Every payout (and collection) must be linked to a customer in the system.- Endpoint:
/customer - Purpose: This endpoint bootstraps the customer record in our system.
- Status: When a customer is first created, their
verification_statusisPENDING.
customer_id returned from this endpoint as you’ll need it in future steps.
The customer’s
country must match the identity document provided for KYC / KYB. Only NON-VERIFIED customers can be fully updated; once a customer is VERIFIED, only fields that are currently null can be updated. If you need to correct a mistake on a verified customer, see Customer data corrections.Step 2: Verify the customer
The verification flow depends on the customer’stype. Pick the path that matches your customer. Mixing the two paths does not work.
- Individual customer
- Business customer
The legacy KYC flow. Upload identity files, then verification triggers automatically when
id_file is included.2.1 Request pre-signed URLs for document upload
- Endpoint:
/file - Purpose: Provides a pre-signed URL that allows you to upload documents for the customer.
- Request: Specify the
customer_idand thefile_category(identity,identity_back,proof_of_address, orliveness_check). - Response: You’ll receive a URL, a set of headers, and a
file_id. The URL is where you will upload the actual document.
2.2 Upload the document
- Method: Use the pre-signed URL to upload the document.
- Request: Perform a
PUTrequest to the pre-signed URL, uploading the document as a binary file using the URL and headers provided.
2.3 Add files to the customer
After uploading the documents, associate them with the customer using thefile_id returned in the previous step.- Endpoint:
POST /api/external/customer/{id}/files - Request: Pass the
customer_idas a URL parameter, then include thefile_idfor each document in the request body. - Purpose: Updates the customer by attaching the uploaded files to their profile. The customer status will remain
PENDINGwhile the documents are reviewed.
id_file triggers verification. Including id_file (the front identity document) in the request signals that document upload is complete and triggers the verification process. Other files (id_file_back, proof_of_address_file, liveness_check_file) can be uploaded before or alongside id_file, but verification will only begin once id_file is included in the request. If the identity document is two-sided (e.g. driver’s license), upload the back side using identity_back as the file category and include id_file_back in the request.Step 3: Create a payout
Now that the customer is verified (you have received thecustomer.verified webhook), you can proceed to create a payout.
- Endpoint:
/payout - Purpose: Initiate a payout associated with the verified customer.
- All Currencies
- NGN
- GBP
- USD
- EUR
- CAD
The following requirements apply regardless of which currency you are sending to.Customer must be verifiedEvery payout must be linked to a verified customer. If the customer’s identity has not been verified, the payout will be rejected. Make sure you have completed Step 1 and Step 2 above before attempting a payout — for
type=individual, that means the legacy KYC flow with an accepted document type (Driver’s License, Passport, or Resident Permit); for type=business, that means the KYB flow with owners and a formation document.Wallet must existThe wallet_id you pass in the request must belong to your business. If the wallet does not exist or the ID is incorrect, the payout will fail.Sufficient balanceYour wallet must have enough funds to cover both the payout amount and any applicable fees. We recommend calling the fees breakdown endpoint first to confirm the total cost before initiating the payout.Amount must exceed feesIf you are specifying a from_amount (the amount you want to send), it must be greater than the total applicable fees. If the fees are equal to or exceed the amount, the payout will be rejected.Currency pair must be supportedThe combination of from_currency_id and to_currency_id must be an active, supported pair. If sending between those two currencies is not currently enabled, the payout will not go through.Payout method must be valid for the currencyEach currency supports specific payout methods (e.g. bank_transfer, interac, crypto, ach, wire). If you use a method that is not available for the destination currency, the request will be rejected.Business must not be under Enhanced Due DiligenceIf your business has been placed under Enhanced Due Diligence (EDD) review, all payouts will be blocked until the review is resolved. Contact our support team if you encounter this.Customer must not be under Enhanced Due DiligenceSimilarly, if a specific customer has been flagged for Enhanced Due Diligence, payouts for that customer will be blocked. Reach out to support for assistance.
