List Create Metrics
POST
/alerts/v1/metric/alias/search
const url = 'http://localhost:3000/alerts/v1/metric/alias/search';const options = {method: 'POST', headers: {'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 http://localhost:3000/alerts/v1/metric/alias/search \ --header 'Content-Type: application/json' \ --data '{}'Request Body
Section titled “Request Body ” Media type application/json
object
Example
{}Responses
Section titled “ Responses ”Successful response
Media type application/json