GET
/
aiQualityCheck
/
testRun
curl --request GET \
  --url https://demo.enneo.ai/api/mind/aiQualityCheck/testRun
[
  {
    "id": 123,
    "aiAgentId": "<string>",
    "aiAgentName": "<string>",
    "state": "processing",
    "config": {},
    "createdBy": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "endDate": "2023-11-07T05:31:56Z",
    "ticketsScheduledForTesting": 123,
    "ticketsTested": 123,
    "successfulTests": 123,
    "description": "<string>"
  }
]

Authorizations

connect.sid
string
cookie
required

Cookie-based authentication

Query Parameters

limit
integer
default:
100

The number of items to return

Required range: 1 < x < 1000
offset
integer
default:
0

The number of items to skip

Required range: x > 0

Response

200
application/json
Successful operation
id
integer

The ID of the test run

aiAgentId
string | null

Id code of the AI agent that is being tested. If null, the test run is not associated with an AI agent, and applies to all AI agents

aiAgentName
string | null

Corresponding name of the AI agent, pulled via FK from the ai_agent table

state
enum<string>

Current state of the test run

Available options:
processing,
completed
config
object | null

If specified, any additional test run parameters

createdBy
integer | null

ID of the user who created the test run

createdAt
string

Date when the test run was created

endDate
string | null

Date when the test run was completed

ticketsScheduledForTesting
integer | null

Number of tickets scheduled for testing

ticketsTested
integer | null

Number of tickets tested

successfulTests
integer | null

Number of successful tests

description
string | null

Optional description of the test run