Request Payout Recipient Notification

Request payout recipient notification

POST /recipients/:recipientId/notifications

Facades PAYOUT

HTTP Request

Example code to request payout recipient notification

recipients = await client.GetPayoutRecipients();
lastRecipient = recipients.slice(-1).pop();

updatedRecipient = await client.UpdatePayoutRecipient(lastRecipient.id, "label.IPN_TEST", "https://hookb.in/1gw8aQxYQDHj002yk79K");

retrieved = await client.GetPayoutRecipient(updatedRecipient.id);

webhookRequested = await client.GetPayoutRecipientWebHook(retrieved.id);

HTTP Response

{
    "success":true
}