This resource allows you to perform a search for various test-related objects, such as test cases, test suites, test results, test suite collections, and schedules. It supports filtering based on different conditions and provides pagination options for managing the volume of results returned.

Methods

Response body properties

The response will be a list of test-related objects that match the search criteria:

POST {{hostURL}}/api/v1/search
Authorization: Basic base64(username:password)
Content-Type: application/json

{
    "type": "TestCase",
    "conditions": [
        // Search conditions go here
    ],
    "pagination": {
        "page": 0,
        "size": 300,
        "sorts": [
            "id, asc"
        ]
    }
}