Pin Changed 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 |
Sample Request
{
"program_id": 2,
"event": "pin_changed",
"event_time": "2021-09-28T10:24:33.984276159-04:00",
"data": {
"account": {
"id": 1,
"cardholder_id": 1,
"processor_reference": "129201097356"
},
"timestamp": "2021-09-28T10:23:17Z"
}
}
JSON Schema
{
"$id": "https://api.pungle.io/schemas/event/pin_changed",
"title": "PIN Changed Event payload",
"type": "object",
"properties": {
"account": {
"title": "Account Information",
"type": "object",
"properties": {
"id": {
"description": "ID of cardholder account",
"type": "number",
"minimum": 0
},
"cardholder_id": {
"description": "ID of cardholder",
"type": "number",
"minimum": 0
},
"processor_reference": {
"description": "Reference to the account on the processor's system",
"type": "string"
}
}
},
"timestamp": {
"description": "Date and time Berkeley receives the event",
"type": "string"
}
}
}
Updated about 2 years ago