Endpoint
POST /clients/business/payouts
Request body
The name on the bank account.
The name of the bank, e.g. "Guaranty Trust Bank".
The bank’s sort code, e.g. "058".
Response
Code examples
curl -X POST https://stella-thirdparty-api.herokuapp.com/api/v1/clients/business/payouts \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
-H "SECRET_KEY: YOUR_SECRET_KEY" \
-H "businessId: YOUR_BUSINESS_ID" \
-H "Content-Type: application/json" \
-d '{
"accountName": "Ada Lovelace",
"accountNumber": "0123456789",
"bankName": "Guaranty Trust Bank",
"bankCode": "058"
}'
Example response
{
"status": true,
"message": "Payout account created successfully"
}