Sub account
Justicea83 opened this issue · 1 comments
Justicea83 commented
How do i create subaccounts like in this docs?
$ https://github.com/Flutterwave/Flutterwave-PHP-v3#subaccount-management
christianjombo commented
You can create Subaccounts like below, ensuring that you provide the properties found on https://developer.flutterwave.com/reference/endpoints/collection-subaccount#create-a-collection-subaccount
`<?php
$data = [
'account_number' => '0690000034',
'account_bank' => '044',
'business_name' => 'Christian Jombo and Sons',
'business_mobile' => '08000000000',
'split_type' => 'flat',
'split_value' => 1000
];
$subaccount = Flutterwave::subaccounts()->create($data);
dd($subaccount);`