Get Alert Rule
GET
/alerts/v1/get/{alert_id}
const url = 'http://localhost:3000/alerts/v1/get/example';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/get/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” alert_id
required
string
Unique identifier for the alert
Responses
Section titled “ Responses ”Successful response
Media type application/json