All webhooks events are sent via a POST request with the following payloads:
A new investor is created:
{
"event": "investor.created",
"data": {
"borrower": {
"Id": "1234",
"Name": "John Smith"
...
}
}
}
An existing borrower is updated:
{
"event": "investor.updated",
"data": {
"borrower": {
"Id": "1234",
"Name": "John Smith"
...
}
}
}
A borrower is deleted:
{
"event": "investor.deleted",
"data": {
"borrower": {
"Id": "1234",
"Name": "John Smith"
...
}
}
}
