Request Payout Recipient Notification

Request payout recipient notification

POST /recipients/:recipientId/notifications

Facades PAYOUT

HTTP Request

An example code to request payout recipient notification

List<PayoutRecipient> recipientsList = new List<PayoutRecipient>();
recipientsList.Add(new PayoutRecipient(
    "[email protected]",
    "recipient1",
    "https://hookb.in/wNDlQMV7WMFz88VDyGnJ"));
PayoutRecipients recipientsObj = new PayoutRecipients(recipientsList);
var recipients = bitpay.SubmitPayoutRecipients(recipientsObj);
var basicRecipient = recipients[0];
var result = bitpay.RequestPayoutRecipientNotification(basicRecipient.Id);

HTTP Response

{
    "success":true
}