GET web_api/id_monitor
Retrieve the full Identity Monitor list for the authenticated API user.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
The result of this inquiry will be an object containing a list of IdMonitoredEntity objects.
IdMonitorListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| MonitorList |
The list of identity-monitored entities. |
Collection of IdMonitoredEntity |
None. |
Response Formats
application/json, text/json
Sample:
{
"MonitorList": [
{
"MonitoredEntityId": 1,
"UniqueId": "sample string 2",
"IsActive": true,
"UpdatedDate": "2026-06-27T12:24:17.1221134-05:00"
},
{
"MonitoredEntityId": 1,
"UniqueId": "sample string 2",
"IsActive": true,
"UpdatedDate": "2026-06-27T12:24:17.1221134-05:00"
}
]
}
application/xml, text/xml
Sample:
<IdMonitorListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VerificationServicesApi.BLL.CustomClasses">
<MonitorList>
<IdMonitoredEntity>
<IsActive>true</IsActive>
<MonitoredEntityId>1</MonitoredEntityId>
<UniqueId>sample string 2</UniqueId>
<UpdatedDate>2026-06-27T12:24:17.1221134-05:00</UpdatedDate>
</IdMonitoredEntity>
<IdMonitoredEntity>
<IsActive>true</IsActive>
<MonitoredEntityId>1</MonitoredEntityId>
<UniqueId>sample string 2</UniqueId>
<UpdatedDate>2026-06-27T12:24:17.1221134-05:00</UpdatedDate>
</IdMonitoredEntity>
</MonitorList>
</IdMonitorListResponse>