Webhooks
Webhooks are where identity breach notifications get sent
Webhook POST Body
Member
Type
Description
{
"type": "piiAlert",
"tag": "my-tag",
"id": "57dc11964d6db21300991b78",
"date": "2023-04-07T07:43:09Z",
"exposureID": "57ed11964d6db21300991c12",
"matchedMonitoredItems": {
"firstName": {
"foundValue": "Jimmy",
"monitoredValue": "JIMMY"
},
"lastName": {
"foundValue": "Dean",
"monitoredValue": "DEAN"
},
"address1": {
"foundValue": "2121 Cherrybrook Dr",
"monitoredValue": "2121 CHERRYBROOK DR"
},
"address2": {
"foundValue": "Suite 200",
"monitoredValue": "SUITE 200"
},
"city": {
"foundValue": "Heisenberg",
"monitoredValue": "HEISENBERG"
},
"province": {
"foundValue": "CO",
"monitoredValue": "CO"
},
"postalCode": {
"foundValue": "12345",
"monitoredValue": "12345"
},
"governmentID": {
"country": "US",
"foundValue": "232-44-3432",
"monitoredValue": "232443432",
},
"emails": [
{
"foundValue": "[email protected]",
"monitoredValue": "[email protected]"
},
],
"creditCards": [
{
"foundValue": "4111 1111 1111 1111",
"monitoredValue": "4111111111111111"
},
],
"cryptocurrencyWallets": [
{
"foundValue": "0xb794f5ea0ba39494ce839613fffba74279579268",
"monitoredValue": "0xb794f5ea0ba39494ce839613fffba74279579268"
},
],
"phoneNumbers": [
{
"foundValue": "(555) 323-4433",
"monitoredValue": "+15553234433"
},
],
"secondaryMatchItems": [
{
"description": "EIN",
"foundValue": "12-3123122",
"monitoredValue": "123123122",
},
{
"description": "Wells Fargo Account Number",
"foundValue": "900000001",
"monitoredValue": "900000001",
},
],
},
"rawMatchSource": "Jimmy Dean\n2121 Cherrybrook Dr, Suite 200 Heisenberg, CO 12345\nSSN 232-44-3432\nMobile: (555) 323-4423\[email protected]\nVisa 4111111111111111 03/28 444\nBTC Wallet 0xb794f5ea0ba39494ce839613fffba74279579268 (1.0233 balance)\nEIN: 12-3123122\nWells Fargo Checking - Account #900000001\n"
}Webhook Authentication
Mutual TLS (mTLS) Authentication (Optional)
Setting Up mTLS
NGINX Example Configuration
Apache Example Configuration
Payload Encryption (Optional)
Testing Your Implementation
Last updated
Was this helpful?