Account Closed Webhook
data Object (event payload)
Field | Value | Is Required | Description |
---|---|---|---|
account | object | Yes | IDs and identifiers associated with the account of an event (see below) |
timestamp | Date | Yes | Date and time the event is received by Berkeley |
account Object
Field | Value | Is Required | Description |
---|---|---|---|
id | integer | Yes | id of cardholder account |
cardholder_id | integer | Yes | id of cardholder |
processor_reference | string | Yes | Reference to the account on the processor's system |
available_balance | string | No | Available balance of account to spend |
status_code | string | No | account status code (see bottom of page for possible account status codes |
Sample Request
{
"program_id": 2,
"event": "account_closed",
"event_time": "2022-06-14T10:33:10.095071008-04:00",
"data": {
"account": {
"id": 1,
"cardholder_id": 1,
"processor_reference": "129201097356"
"available_balance": "500.00",
"status_code": "closed"
},
"timestamp": "2023-01-30T00:20:33Z"
}
}
Updated about 2 years ago