Reporting API
Overview
The Reporting API provides access to the historical reporting data collected by the Genesys Knowledge Center Server.
Historical reporting is based on atomic events captured by the solution during its operations. These events are produced by activities carried out via the Knowledge API and, optionally, by Management API and application activities, as well.
Authorization
You must have agent or reporter privileges to access the Reporting API, as noted below. This can be configured in the Knowledge Center Administrator plugin.
Collected Data
Data collected for each event consists of two parts:
- Basic structure—fixed event attributes captured for all events in the system
- Event-specific structure—event-specific data that is only captured for events of a specific type and which provides information that is valuable for understanding that type of event
Data expiration
Events stored in the reporting index are subject to expiration, with a default expiration period of 14 days.
{
"history" : {
"_ttl" : { "enabled" : true, "default" : "14d" }
}
}
You can override this value by replacing the default configuration value in the Genesys Knowledge Center Server options, as shown here:
option: reporting\ttl
value: 0 or <number><unit>
default: 14d
-1 - infinite ttl
<number><unit> - defines period for ttl
unit: d (days), m (minutes), h (hours), or w(weeks)
Need restart: yes
The value of this option is applied when any node in the cluster is started.
Basic Structure
Attribute | Required | Type | Description |
---|---|---|---|
nodename | Yes | String | Name of the node for which the event was generated |
knowledgebase | Yes | String | ID of the knowledge base that event belongs to |
language | Yes | String | Language of data that the operation is executed with |
agentId | No | String | ID of the agent involved in operation |
customerId | No | String | Customer identity |
timestamp | Yes | Date-Time | UTC timestamp for the operation |
duration | Yes | int | Duration of the operation in ms |
type | Yes | enum | Event type (comes from a fixed list of all operations that create events) |
tenantId | Yes | String | Tenant ID |
sessionId | No | String | Session ID provided by Genesys Knowledge Center Server |
visitId | No | String | ID of the visit tracked by Genesys Proactive Engagement |
Originator | Yes | enum | Originator of event, could be AGENT or CUSTOMER |
keyNouns | No | String [] | List of key Nouns from text of user query |
keyProperNouns | No | String [] | List of key Proper Nouns from text of user query |
keyVerbs | No | String [] | List of key Verbs from text of user query |
keyAdjectives | No | String [] | List of key Adjectives from text of user query |
remoteIp | No | String | IP addres off client, that called GKS functionality that burnt this particular record in history |
geoLocationHash | No | String | HashCode of geo location, that was determined against obtained remoteIp for this history record |
lonLat | No | double [] | Longtitude and Latitude of geo position against obtained remoteIp for this history record |
countryCode | No | String | Code of country for this particular geo location. |
Event Types
EVENT TYPE | DESCRIPTION | width="55%PARAMETERS |
---|---|---|
FEEDBACK | Feedback to one of the knowledge elements | query: Query document: Document agentId: String customerId: String feedbacktype: enum language: String |
OPEN | Events describing the viewed content | document: Document agentId: String customerId: String language: String |
NONANSWERED | Events that indicate that the user's question was not answered | query: Query language: String customerId: String agentId: String |
SEARCH | Search request posted with results returned | query: Query- search query result: array<Document> - full document or just document ids (depends on the application configuration) |
Query
Field | Type | Description |
---|---|---|
query | String | User-typed query string |
filters | FilterCondition | Array of filters |
categories | String | Array of categories |
tags | String | Array of tags |
API
You can use the Reporting API to gather the following kinds of information:
- Agent history for a specific time period
- Customer history for a specific time period
- Articles that have been used (with positive feedback) during a specific time period
- Queries posted during a specific time period
- Knowledge base summaries, providing:
- Static information about a knowledge base, such as its name, ID, or languages
- Dynamic information, such as the number of articles or categories it currently contains, the average query time, or the average relevancy of the top answer
Search History
Description | Search history activities for a specific time period | ||||||||||||||||||||||||||||||||||||||||||||||||||
URL | /history | ||||||||||||||||||||||||||||||||||||||||||||||||||
Method | POST | ||||||||||||||||||||||||||||||||||||||||||||||||||
Request Content-Type | application/json | ||||||||||||||||||||||||||||||||||||||||||||||||||
Response Content-Type | application/json | ||||||||||||||||||||||||||||||||||||||||||||||||||
Role | Agent | ||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
| ||||||||||||||||||||||||||||||||||||||||||||||||||
Response Body |
|
Get history of queries
HistoryOfQueries Complex Type
Field | Type | Description |
---|---|---|
count | Int | total count of query items according to given parameters |
From | Int | pagination offset |
Size | Int | count of items in current page (pagination) |
items | HistoryOfQueryItem[] | request history items itself |
HistoryOfQuery Complex Type
Field | Type | Description |
---|---|---|
query | String | Registered in the storage history of the user query |
Moment | Datetime | The moment of time when this query was sent to the server |
userId | String | User identified on behalf of which query is received |
sessionId | String | Session identifier related to the given user query |
Get history of queries
Description | Gathers history of user queries. | ||||||||||||||||||||
URL | /{kbId}/{lang}/queries | ||||||||||||||||||||
Method | GET | ||||||||||||||||||||
Request Content-Type | application/json | ||||||||||||||||||||
Response Content-Type | application/json | ||||||||||||||||||||
Role | Reporter | ||||||||||||||||||||
Url identifiers |
| ||||||||||||||||||||
Parameters |
| ||||||||||||||||||||
Response Body |
| ||||||||||||||||||||
Notes |
Export History
Description | Gather history for a specific subtenant for a specific date range. | |||||||||||||||||||||||||||||||||||||||||||||
URL | /history/export | |||||||||||||||||||||||||||||||||||||||||||||
Method | POST | |||||||||||||||||||||||||||||||||||||||||||||
Request Content-Type | application/json | |||||||||||||||||||||||||||||||||||||||||||||
Response Content-Type | application/json | |||||||||||||||||||||||||||||||||||||||||||||
Role | Reporter | |||||||||||||||||||||||||||||||||||||||||||||
Parameters |
| |||||||||||||||||||||||||||||||||||||||||||||
Response Body |
| |||||||||||||||||||||||||||||||||||||||||||||
Notes |
|