Veritas™ Surveillance User Guide
- Introducing Veritas Surveillance
- Getting started
- Working with dashboard widgets
- Managing employees and employee groups
- Managing departments
- Managing department users
- Managing department-level archives
- Managing department-level searches
- Managing department-specific hotword sets
- Managing department-specific labels
- Managing department-specific review comments
- Viewing employees associated with departments
- Managing users, roles, and permissions
- Managing application-level archives
- Managing application-level searches
- Managing application-specific hotword sets
- Managing application-specific labels
- Managing application-specific review comments
- Managing search schedules
- Managing export operations
- Managing reviews
- Working with reports
- Enhanced reporting
- Departments API
- Roles API
- Users API
- UserRoles API
- ItemMetrics API
- ReviewerMapping API
- MonitoredEmployees API
- Evidence of Review API
- Managing Power BI templates for reporting APIs
- Managing Audit Settings
- Working with Audit viewer
ItemMetrics - List by filter
POST https://<Reporting endpoint Base URL>/odata/ItemMetrics
The following filters can be used with the ItemMetrics API when invoked using the POST method. The system uses the
operator between the filters to return the result based on the specified filters.Name | Type | Description |
---|---|---|
Departments | Optional | Specifies the department to which the captured item belongs and returns item counts for items within that department. : JSON array of integers 'id'(identifier fields) that is department IDs. : As an input, the ItemMetrics API can pass maximum of 1000 Departments IDs. |
CaptureTypes | Optional | Specifies the mode/technique used to capture the item in Veritas Surveillance and returns item counts for items with the specified capture type. : JSON array of integers 'id'(identifier fields) that is CaptureTypes IDs. : As an input, the ItemMetrics API can pass maximum 10 CaptureTypes IDs. |
CaptureDateStart | Mandatory | Specifies the date on which items are captured or ingested in Veritas Surveillance is recorded as the CaptureDate for that item. Returns item counts whose CaptureDate is greater than or equal to the specified CaptureDateStart. : Date in the YYYY-MM-DD format that is CaptureDateStart. |
CaptureDateEnd | Mandatory | Specifies the date on which items are captured or ingested in Veritas Surveillance is recorded as the CaptureDate for that item. Returns item counts whose CaptureDate is less than or equal to the specified CaptureDateEnd. : Date in the YYYY-MM-DD format that is CaptureDateEnd. |
MessageDirections | Optional | Specifies whether the item was sent/received from within the organization or from an external source and returns item counts for items that have the specified message direction. : JSON array of integers 'id'(identifier fields) that is MessageDirections IDs : As an input, the ItemMetrics API can pass maximum 5 MessageDirections IDs. |
MessageTypes | Optional | Specifies the type of captured items and returns item counts for items that have the specified message type. : JSON array of integers 'id'(identifier fields) that is MessageTypes IDs. : As an input, the ItemMetrics API can pass maximum 100 MessageTypes IDs on a single page. |
To get the item counts for Departments ID 11154, between CaptureDateStart 2023-11-24 and CaptureDateEnd2023-10-24 and having CaptureType as 1 or 3.
To get item counts for Department IDs 9 and 5, between CaptureDateStart 2023-06-01 and CaptureDateEnd 2023-08-02 and having MessageTypes as 7 or 8.
POST https://<Reporting endpoint Base URL>/odata/ItemMetrics
{
"CaptureDateStart": "2023-06-01",
"CaptureDateEnd": "2023-08-02",
"Departments": [9,5],
"MessageTypes": [7,8]
}
To get item counts for Departments IDs 9 and 5 , between CaptureDateStart 2023-06-01 and CaptureDateEnd 2023-08-02 and having MessageDirections as 1 or 2.
POST https://<Reporting endpoint Base URL>/odata/ItemMetrics
{
"CaptureDateStart": "2023-06-01",
"CaptureDateEnd": "2023-08-02",
"Departments": [9,5],
"MessageDirections": [1,2]
}
To get item counts for Departments IDs 9 and 5, between CaptureDateStart 2023-06-01 and CaptureDateEnd 2023-08-02 and having MessageTypes as 7 or 8.
POST https://<Reporting endpoint Base URL>/odata/ItemMetrics
{
"CaptureDateStart": "2023-06-01",
"CaptureDateEnd": "2023-06-02",
"Departments": [9,5],
"MessageTypes": [7,8]
}
Status code: 200 OK
See Supported OData query options.
See Responses.