GET web_api/id_monitor/{Start}/{End}
Get Full Identity Monitor List
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Start |
DateTime used for the beginning of the reporting period. |
date |
Required |
| End |
Datetime used for hte end of the reporting period. |
date |
Required |
Body Parameters
None.
Response Information
Resource Description
The result of this inquiry will be an IdMonitorListResponse object containing a list of IdMonitoredEntity objects.
IdAlertResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| IdMonitorAlerts | 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": "2025-11-02T23:37:32.8179839-06:00"
},
{
"AlertUID": 1,
"UniqueId": "sample string 2",
"AlertTypeId": 3,
"AlertType": "sample string 4",
"ModifiedDate": "2025-11-02T23:37:32.8179839-06: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>2025-11-02T23:37:32.8179839-06:00</ModifiedDate>
<UniqueId>sample string 2</UniqueId>
</IdMonitorAlert>
<IdMonitorAlert>
<AlertType>sample string 4</AlertType>
<AlertTypeId>3</AlertTypeId>
<AlertUID>1</AlertUID>
<ModifiedDate>2025-11-02T23:37:32.8179839-06:00</ModifiedDate>
<UniqueId>sample string 2</UniqueId>
</IdMonitorAlert>
</IdMonitorAlerts>
</IdAlertResponse>