One test across the runs it appeared in
GET
/v1/results/{id}/history
const url = 'https://beta-api.plune.ai/v1/results/example/history';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://beta-api.plune.ai/v1/results/example/history \ --header 'Authorization: Bearer <token>'Grouped by signature, not by test case id: the same case run with different params is a different test, and a history that mixed them would put a green and a red side by side with nothing to explain the difference.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Responses
Section titled “ Responses ”The signature and its results, newest first
Media type application/json
object
signature
required
string
history
required
Array<object>
object
key
additional properties
any
Example generated
{ "signature": "example", "history": [ {} ]}No / invalid token or session
Not found or not yours
Media type application/json
object
error
required
string
Example generated
{ "error": "example"}