Test Suites

List Test Suite Test Cases

Beta
GET
List the Test Cases associated with a Test Suite

Path parameters

idstringRequired
A UUID string identifying this test suite.

Query parameters

limitintegerOptional
Number of results to return per page.
offsetintegerOptional
The initial index from which to return the results.

Response

This endpoint returns an object
count
integer
results
list of objects
next
stringOptional
previous
stringOptional
GET
1curl https://api.vellum.ai/v1/test-suites/id/test-cases \
2 -H "X_API_KEY: <apiKey>"
200
Retrieved
1{
2 "count": 123,
3 "results": [
4 {
5 "input_values": [],
6 "evaluation_values": [],
7 "id": "id",
8 "label": "label"
9 }
10 ],
11 "next": "http://api.example.org/accounts/?offset=400&limit=100",
12 "previous": "http://api.example.org/accounts/?offset=200&limit=100"
13}