This is the list of event types that we currently send.
For guidance on how to listen to these events, take a look at Svix's guide to consuming webhooks.
issued summary reminder by account
{
"customer": {
"fiscalId": "86345678-9",
"logoURL": "https://example.com/logos/company_logo.png",
"name": "Evil Corp",
"portalURL": "https://app.bemmbo.com/evil",
"verificationCode": "ABC123XYZ"
},
"event": {
"type": "issued"
},
"invoices": [
{
"amountToBePaid": 2000000,
"conciliatedAmount": 5000000,
"dueBy": "2024-10-15T00:00:00Z",
"number": "inv_6OkjqPtOKD5MAp9V",
"receiverFiscalId": "98765432-1",
"status": "PARTIALLY_PAID"
},
{
"amountToBePaid": 2000000,
"conciliatedAmount": 0,
"dueBy": "2024-10-15T00:00:00Z",
"number": "inv_lJrj6wt05yWrZmO7",
"receiverFiscalId": "80765432-k",
"status": "PENDING"
}
],
"totalAmount": 4000000
}
reminder by invoice when is expired, about to expire or issued.
{
"customer": {
"fiscalId": "86345678-9",
"logoURL": "https://example.com/logos/company_logo.png",
"name": "Evil Corp",
"portalURL": "https://app.bemmbo.com/evil",
"verificationCode": "ABC123XYZ"
},
"event": {
"type": "about_to_expire"
},
"invoice": {
"amountToBePaid": 2500000,
"dueBy": "2024-10-15",
"number": "435322",
"referenceNumber": "inv_ZNfJ4UtQ86wPaX7Y",
"totalAmount": 5000000
}
}
reminder when customer debt status changed
{
"customerId": "4fd4a4a3-fa1f-436f-bfab-930f216d6c54",
"debt": 30000000,
"status": "WITH_DEBT",
"updatedAt": "2024-10-15T00:00:00Z"
}