Download batch archive of multiple runs
POST
/api/v1/requests/archive
const url = 'https://example.com/api/v1/requests/archive';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"ids":["example"]}'};
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://example.com/api/v1/requests/archive \ --header 'Content-Type: application/json' \ --data '{ "ids": [ "example" ] }'Request Body
Section titled “Request Body ” Media type application/json
object
ids
required
Array<string>
Responses
Section titled “ Responses ”Gzipped batch archive containing individual run archives
Invalid input
One or more runs not found