Query Monitored Identities

Retrieve list of currently monitored identities

get

Returns a paginated list of all monitored identities for your account. Can be used to check if a specific identity is monitored by using the tag or id parameters.

Authorizations
Query parameters
tagstringOptional

(Optional) If specified, the call will only return the monitored identity matching this tag value.

Example: 56d6d566-82e6-426c-ae47-528a0fb64808
idstringOptional

(Optional) If specified, the call will only return the monitored identity matching this Enzoic ID.

Example: 641c73ef1d909615a63b4d75
pageSizeintegerOptional

(Optional) The number of results to return in a single call. The maximum is 100 and the default is 100.

Default: 100
pagingTokenstringOptional

(Optional) For each call to the API, if there are more pages of results available then a pagingToken will be returned. Pass the pagingToken in via this parameter to retrieve the subsequent page of results. Should be left off for the initial call to the API.

Responses
200
The response body contains the requested results.
application/json
get
GET /v1/identity-monitoring HTTP/1.1
Host: api.enzoic.com
Authorization: Bearer Base64(your_api_key:your_api_secret)
Accept: */*
200

The response body contains the requested results.

{
  "count": 1,
  "monitoredIdentities": [
    {
      "id": "641c73ef1d909615a63b4d75",
      "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",
        "displayValue": "XXXXX1234"
      },
      "emails": [
        "[email protected]"
      ],
      "phoneNumbers": [
        {
          "country": "text",
          "value": "text"
        }
      ],
      "creditCards": [
        {
          "displayValue": "XXXXXXXXXXXX1111"
        }
      ],
      "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",
          "displayValue": "XXXXXXX3215"
        }
      ],
      "webhookID": "66766957431c9acc8cea2d6d"
    }
  ],
  "pagingToken": "5854757a7750ac6c4230f656"
}

Last updated

Was this helpful?