Pause multiple requests
POST
/api/v1/requests/bulk-pause
const url = 'https://example.com/api/v1/requests/bulk-pause';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/bulk-pause \ --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 ”Success
Media type application/json
object
updated
required
number
skipped
required
number