GET web_api/id_monitor/{Start}/{End}

Retrieve active Identity Monitor alerts for a specified date range.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Start

DateTime used for the beginning of the reporting period.

date

Required

End

DateTime used for the end of the reporting period.

date

Required

Body Parameters

None.

Response Information

Resource Description

The result of this inquiry will be an object containing a list of IdMonitoredEntity objects.

IdAlertResponse
NameDescriptionTypeAdditional information
IdMonitorAlerts

The list of identity monitoring alerts.

Collection of IdMonitorAlert

None.

Response Formats

application/json, text/json

Sample:
{
  "IdMonitorAlerts": [
    {
      "AlertUID": 1,
      "UniqueId": "sample string 2",
      "AlertTypeId": 3,
      "AlertType": "sample string 4",
      "ModifiedDate": "2026-06-27T12:25:59.2508097-05:00"
    },
    {
      "AlertUID": 1,
      "UniqueId": "sample string 2",
      "AlertTypeId": 3,
      "AlertType": "sample string 4",
      "ModifiedDate": "2026-06-27T12:25:59.2508097-05:00"
    }
  ]
}

application/xml, text/xml

Sample:
<IdAlertResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VerificationServicesApi.BLL.CustomClasses">
  <IdMonitorAlerts>
    <IdMonitorAlert>
      <AlertType>sample string 4</AlertType>
      <AlertTypeId>3</AlertTypeId>
      <AlertUID>1</AlertUID>
      <ModifiedDate>2026-06-27T12:25:59.2508097-05:00</ModifiedDate>
      <UniqueId>sample string 2</UniqueId>
    </IdMonitorAlert>
    <IdMonitorAlert>
      <AlertType>sample string 4</AlertType>
      <AlertTypeId>3</AlertTypeId>
      <AlertUID>1</AlertUID>
      <ModifiedDate>2026-06-27T12:25:59.2508097-05:00</ModifiedDate>
      <UniqueId>sample string 2</UniqueId>
    </IdMonitorAlert>
  </IdMonitorAlerts>
</IdAlertResponse>