Enzoic API - Developer Documentation
Visit our website
  • Enzoic Website
  • Getting Started
    • .NET Quick Start
    • Java Quick Start
    • JavaScript Quick Start
    • Ruby Quick Start
    • PHP Quick Start
    • Go Quick Start
    • Python Quick Start
  • Using the Enzoic API
  • Libraries
  • API reference
    • Passwords API
    • Credentials API
      • Hashed Credentials API
      • Cleartext Credentials API
        • Query Passwords for an Email Address
        • Query Passwords for a Domain
        • Query Passwords for a Partial Hash of an Email Address
      • Test Accounts
    • Exposures API
      • Get Exposures for an Email Address
      • Get Exposures for a Domain
      • Get Exposures for All Email Addresses in a Domain
      • Get Exposures by Date
      • Retrieve Details for an Exposure
    • Breach Monitoring API
      • Breach Monitoring by User
        • Add Breach Alert Subscriptions for Users
        • Remove Breach Alert Subscriptions for Users
        • Query Breach Alert Subscriptions for Users
      • Breach Monitoring by Domain
        • Add Breach Alert Subscriptions for Domains
        • Remove Breach Alert Subscriptions for Domains
        • Query Breach Alert Subscriptions for Domains
      • Webhooks
        • Managing Webhooks
          • Register a Webhook
          • Update a Webhook
          • Delete a Webhook
          • Query Registered Webhooks
        • Webhook Test API
    • Identity Breach Monitoring API
      • Monitoring Identities
        • Add Identities to Monitoring
        • Update Monitored Identities
        • Remove an Identity from Monitoring
        • Query Monitored Identities
      • Retrieving Identity Exposures
      • Webhooks
        • Managing Webhooks
          • Register a Webhook
          • Update a Webhook
          • Delete a Webhook
          • Query Registered Webhooks
        • Webhook Test API
    • BIN Monitoring API
      • Monitoring BINs
        • Add Bank Identification Numbers to Monitoring
        • Remove Bank Identification Numbers from Monitoring
        • Query Monitored Bank Identification Numbers
      • Retrieving Exposed Payment Cards
      • Webhooks
        • Managing Webhooks
          • Register a Webhook
          • Update a Webhook
          • Delete a Webhook
          • Query Registered Webhooks
        • Webhook Test API
    • Payment Card Exposures API
      • Check a Card Number for Compromise
    • Account Status APIs
      • Account Status
      • Account Usage
    • Password Hash Algorithms
    • OpenAPI Specification
    • View OpenAPI Spec in Swagger UI
    • Postman Collection of API Examples
  • Password Strength Meter
    • Quick Start
    • Example
Powered by GitBook
On this page

Was this helpful?

  1. API reference
  2. Identity Breach Monitoring API
  3. Monitoring Identities

Update Monitored Identities

PreviousAdd Identities to MonitoringNextRemove an Identity from Monitoring

Last updated 10 months ago

Was this helpful?

Update monitored identities with new information

put

Allows you to update an existing monitored identity with new or updated information. For example, you may wish to add additional emails to be monitored, or remove a credit card from monitoring. It is not necessary to resubmit the entire identity; fields which are not present in the PUT body will not get updated. If an array value (such as emails) is specified, it will replace the entire contents of the array. So if the existing monitored identity's emails array contained ["email1@enzoic.com", "email2@enzoic.com"] and the emails array value in the PUT contained ["newemail@enzoic.com"], the new stored array on the monitored identity would be ["newemail@enzoic.com"].

Authorizations
Body
Responses
200
The call was successful. The monitored identities have been updated with the new information.
application/json
put
PUT /v1/identity-monitoring HTTP/1.1
Host: api.enzoic.com
Authorization: Bearer Base64(your_api_key:your_api_secret)
Content-Type: application/json
Accept: */*
Content-Length: 750

{
  "monitoredIdentities": [
    {
      "tag": "56d6d566-82e6-426c-ae47-528a0fb64808",
      "id": "641c73ef1d909615a63b4d75",
      "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"
    }
  ]
}
200

The call was successful. The monitored identities have been updated with the new information.

{
  "updated": 1,
  "notFound": 0
}