Create process
POST
/queue/process
const url = 'https://api.testzilla.ai/v1/queue/process';const options = { method: 'POST', headers: {'x-api-key': '<x-api-key>', 'Content-Type': 'application/json'}, body: '{}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.testzilla.ai/v1/queue/process \ --header 'Content-Type: application/json' \ --header 'x-api-key: <x-api-key>' \ --data '{}'Authorizations
Section titled “Authorizations ”Request Body
Section titled “Request Body ” Media type application/json
Request body (schema to be documented).
object
Example generated
{}Responses
Section titled “ Responses ”Success
Media type application/json
object
Example generated
{}Unauthorized (missing/invalid API key or token)
Not found