Simplify project status
GET/project/:id/simple-status
Get simplify project status
Request
Path Parameters
id anyrequired
A unique project ID
Responses
- 200
Successful response - simplify project status
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
tests
object[]
name string
url string
status string
Possible values: [OK
, Error message
]
total integer
Total count of checks
Example:
2
failed
Count of failing checks
Example:
1
{
"tests": [
{
"name": "Homepage",
"url": "https://www.testomato.com",
"status": "OK"
},
{
"name": "Contact",
"url": "https://www.testomato.com/contact",
"status": "Missing \"example\" in Website TEXT"
}
],
"total": 2,
"failed": 1
}