Enneo

AI Quality Check

Get test cases for a specific AI agent

GET /aiQualityCheck/testCase/{id}

GET /aiQualityCheck/testCase/{id}

Get all test cases associated with the specified AI agent ID. Here {id} is treated as an AI agent id (digits, or all to list across every agent). This is a different overload of {id} than the DELETE/PATCH variants below, which take a numeric test case id.

Path parameters

idstringpathrequired

The AI agent ID (numeric, or 'all').

Responses

200 — Successful operation

Response Example

[
  {
    "id": 1,
    "ticketId": 1,
    "aiAgentIds": [
      1,
      2,
      3
    ],
    "channel": "string",
    "summary": "string",
    "description": "string",
    "expectedResult": null,
    "modifiedBy": 1
  }
]