Get Testsets
GET/testsets
Get all testsets.
Returns:
- A list of testset objects.
Raises:
- HTTPExceptionwith status code 404 if no testsets are found.
Request
Query Parameters
app_id App Idrequired
Responses
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [ 
- ] 
_id  Id (string)required
name Name (string)required
created_at date-timerequired
[
  {
    "_id": "string",
    "name": "string",
    "created_at": "2024-08-19T07:55:04.524Z"
  }
]
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [ 
- Array [ 
- MOD1
- MOD2
- ] 
- ] 
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
  "detail": [
    {
      "loc": [
        "string",
        0
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}
Loading...