Facades: payout
Overview
Allows a merchant to invite clients to sign up for a BitPay personal account.
- For merchants who need to invite multiple recipients in a short period of time, make sure to send batch of invites e.g. use this endpoint to invite an array [] of recipients (up to 1000 in a single API call)
- By default a merchant can invite a maximum of 1000 distinct recipients via the business account. Reach out to your account manager at BitPay in order to increase this limit.
Parameters
| Parameter | Description | 
|---|---|
| recipients | A PayoutRecipients object with request parameters defined. | 
Example
$recipientsList = [
    new BitPaySDK\Model\Payout\PayoutRecipient(
        "[email protected]",
        "recipient1",
        "https://hookb.in/QJOPBdMgRkukpp2WO60o"),
    new BitPaySDK\Model\Payout\PayoutRecipient(
        "[email protected]",
        "recipient2",
        "https://hookb.in/QJOPBdMgRkukpp2WO60o"),
    new BitPaySDK\Model\Payout\PayoutRecipient(
        "[email protected]",
        "recipient3",
        "https://hookb.in/QJOPBdMgRkukpp2WO60o")
];
$recipients = new BitPaySDK\Model\Payout\PayoutRecipients($recipientsList);
$payoutRecipients = $bitpay->submitPayoutRecipients($recipients);