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 Created At (string)required
updated_at Updated At (string)required
[
  {
    "_id": "string",
    "name": "string",
    "created_at": "string",
    "updated_at": "string"
  }
]
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...