Get Queue
GET
/queue/{id}
const url = 'https://api.testzilla.ai/v1/queue/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/queue/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
Responses
Section titled “ Responses ”Success
Media type application/json
object
Example generated
{}Unauthorized (missing/invalid API key or token)
Not found