v36

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-113513150.0 KB

List Testcases in Testset

Retrieve a paginated list of Testcases belonging to a Testset.

get/testsets/{testsetId}/testcases

Path parameters

testsetIdstring required
Example:246

The ID of the Testset to list Testcases from.

Query parameters

limitinteger
Example:20

Maximum number of items to return (1-100). Use with cursor for pagination through large sets.

cursorstring
Example:123

Cursor for pagination. Pass the nextCursor from the previous response to get the next page of results.

Response

Successfully retrieved list of Testcases.

nextCursorstring nullable required
hasMoreboolean required
totalinteger

Example response

{
  "data": [
    {
      "validationErrors": [
        {
          "path": "/data/question",
          "message": "Required field missing"
        }
      ]
    }
  ]
}