Fetch All Silences
GET
/alerts/v1/silence/search
const url = 'http://localhost:3000/alerts/v1/silence/search';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3000/alerts/v1/silence/searchResponses
Section titled “ Responses ”Successful response
Media type application/json