Add Identities to Monitoring

Add identities to monitoring

post

Allows you to set up a new alert subscription for one or more individual identities. This can include many aspects of an individual's PII, such as name, physical address, phone numbers, government IDs, email addresses, credit cards, etc.

Authorizations
Body
monitoredIdentitiesobject[]optional

An array of identities to monitor. The max number of identities in a single call is 20.

Responses
curl -L \
  --request POST \
  --url 'https://api.enzoic.com/v1/identity-monitoring' \
  --header 'Authorization: Bearer Base64(your_api_key:your_api_secret)' \
  --header 'Content-Type: application/json' \
  --data '{
    "monitoredIdentities": [
      {
        "tag": "56d6d566-82e6-426c-ae47-528a0fb64808",
        "firstName": "John",
        "lastName": "Doe",
        "country": "US",
        "address1": "1234 Main St",
        "address2": "Suite 100",
        "city": "New York",
        "province": "NY",
        "postalCode": 12345,
        "governmentID": {
          "country": "US",
          "value": "123-12-1234"
        },
        "emails": [
          "test@enzoic.com"
        ],
        "phoneNumbers": [
          {
            "country": "text",
            "value": "text"
          }
        ],
        "creditCards": [
          "4111-1111-1111-1111"
        ],
        "cryptocurrencyWallets": [
          "34xp4vRoCGJym3xR7yCVPFHoCNxv4Twseo"
        ],
        "urls": [
          "https://www.enzoic.com"
        ],
        "ip4Addresses": [
          "134.88.23.1"
        ],
        "ip6Addresses": [
          "2001:0db8:85a3:0000:0000:8a2e:0370:7334"
        ],
        "secondaryMatchItems": [
          {
            "description": "Bank of America Checking Account",
            "value": 90082323215
          }
        ],
        "webhookID": "66766957431c9acc8cea2d6d"
      }
    ]
  }'
{
  "added": 1,
  "alreadyExisted": 0
}

Last updated

Was this helpful?