Update Specific Channel
PATCH
/alerts/v1/notifications/update/{alert_id}
const url = 'http://localhost:3000/alerts/v1/notifications/update/example';const options = { method: 'PATCH', headers: {'Content-Type': 'application/json'}, body: '{"name":"updated name"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url http://localhost:3000/alerts/v1/notifications/update/example \ --header 'Content-Type: application/json' \ --data '{ "name": "updated name" }'Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” alert_id
required
string
Unique identifier for the alert
Request Body
Section titled “Request Body ” Media type application/json
object
Example
{ "name": "updated name"}Responses
Section titled “ Responses ”Successful response
Media type application/json