Identity Protect Alerts

See How to Receive Webhooks for general information and guidance about webhooks.

There are three types of Identity Protect Alerts.

  • Change of Address
  • Darkweb
  • SSN

Change of Address Alert

Webhook Example
{
  "service": "alerts",
  "method": "push",
  "event": "push",
  "details": {
    "appKey": "6d6ccfa3-90ec-4161-b7f8-7ab31898336c",
    "clientKey": "dd0c0f75-9ce1-4ce2-bcd3-e6a0f1fa46de",
    "bureau":"idp",
    "alertType": "IDPAlert",
    "alertSubType": "COA",
    "alertId":"1234567890"
  }
}
Alert Details
{
  "id": 1234567890,
  "class": "COA",
  "status": "Alert",
  "canDismiss": 1,
  "canRedAlert": 0,
  "createDate": "2021-03-19T15:25:55Z",
  "updatedDate": "2021-03-19T15:26:00Z",
  "alertCenterMsg": "",
  "emailMsg": "",
  "emailSubject": "Address Change Alert",
  "smsMsg": "",
  "properties": {
    "firstname": "Thomas",
    "lastname": "Friedman",
    "nameFull": "Thomas Friedman",
    "friendlyMoveDate": "August 2020",
    "newAddress": "400 20 ST, Grand Junction, CO 81504",
    "originalAddress": "535 30 RD, Grand Junction, CO 81504"
  }
}

Darkweb

Webhook Example
{
  "service": "alerts",
  "method": "push",
  "event": "push",
  "details": {
    "appKey": "937ce1cb-b91b-48ce-acc3-3cf43b583b57",
    "clientKey": "0ec833f6-9518-4631-997e-0e2fa279b42e",
    "bureau":"idp",
    "alertType": "IDPAlert",
    "alertSubType": "Darkweb",
    "alertId":"1234567890"
  }
}
Alert Details
    {
      "id": 1234567890,
      "class": "PIM",
      "status": "Alert",
      "canDismiss": 1,
      "canRedAlert": 0,
      "createDate": "2021-03-29T17:26:10Z",
      "updatedDate": "2021-03-31T14:01:00Z",
      "alertCenterMsg": "",
      "emailMsg": "",
      "emailSubject": "Personal Identity Monitoring Alert",
      "smsMsg": "",
      "properties": {
        "type": "Breach",
        "dateFound": "02/14/2019",
        "passwordFound": "No",
        "description": "The site 8fit.com has been reported in February 2019 to possibly have suffered a data exposure that could include 15025454 emails, passwords and names",
        "recommendations": "Change the password of the account and any other services where you use the same password immediately",
        "source": "Dark Web",
        "locale": "en",
        "address": "535 30 RD",
        "city": "Grand Junction",
        "state": "CO",
        "zipCode": "81504",
        "emailAddress": "[email protected]"
      }
    }

SSN Monitoring Alert

Webhook Example
{
  "service": "alerts",
  "method": "push",
  "event": "push",
  "details": {
    "appKey": "bee3fc68-7e72-4310-b554-4552ee67a100",
    "clientKey": "9687d6ce-3835-407b-9e0d-080d8a019c61",
    "bureau":"idp",
    "alertType": "IDPAlert",
    "alertSubType": "SSN",
    "alertId":"1234567890"
  }
}
Alert Details
{
  "id": 1234567890,
  "class": "SSN",
  "status": "Alert",
  "canDismiss": 1,
  "canRedAlert": 1,
  "createDate": "2020-10-19T15:02:46Z",
  "updatedDate": "2020-10-19T15:03:00Z",
  "alertCenterMsg": "",
  "emailMsg": "",
  "emailSubject": "Urgent - Identity ALERT ",
  "smsMsg": "",
  "properties": {
    "firstname": "Thomas",
    "lastname": "Friedman",
    "useCase": "High-Risk Transaction",
    "publicAcctName": "CACB",
    "channel": "online",
    "result": "Passed",
    "failureReason": "Passed Verification"
  }
}