Get Scenario
GET
/scenarios/{id}/runs/{runId}
const url = 'https://api.testzilla.ai/v1/scenarios/example/runs/example';const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
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://api.testzilla.ai/v1/scenarios/example/runs/example \ --header 'x-api-key: <x-api-key>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Id identifier
runId
required
string
RunId identifier
Responses
Section titled “ Responses ”Success
Media type application/json
object
Example generated
{}Unauthorized (missing/invalid API key or token)
Not found