1. Go to this page and download the library: Download timedoor/tmd-midtrans-iris library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
$payouts = [
(new \Timedoor\TmdMidtransIris\Dto\PayoutRequest)
->setBeneficiaryName('Example')
->setBeneficiaryAccount('1212121212')
->setBeneficiaryBank('bca')
->setAmount(10000)
->setNotes('just an example payout'),
(new \Timedoor\TmdMidtransIris\Dto\PayoutRequest)
->setBeneficiaryName('Example 2')
->setBeneficiaryAccount('1313131313')
->setBeneficiaryBank('bni')
->setAmount(20000)
->setNotes('just an example payout')
];
$result = $iris->payout()->create($payouts);