curl --request POST \
--url https://demo.enneo.ai/api/mind/aiQualityCheck/testRun \
--header 'Content-Type: application/json' \
--data '{
"aiAgentId": 123,
"description": "Standard quality check for bank data",
"config": {
"limit": 100,
"reRunModels": true
}
}'
{
"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>"
}
Cookie-based authentication
Successful operation
Represents a test run for AI quality checks. A test run is a collection of tickets that are tested against an expected output.
curl --request POST \
--url https://demo.enneo.ai/api/mind/aiQualityCheck/testRun \
--header 'Content-Type: application/json' \
--data '{
"aiAgentId": 123,
"description": "Standard quality check for bank data",
"config": {
"limit": 100,
"reRunModels": true
}
}'
{
"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>"
}