Update Notifier
PUT
/v1/notifiers/{id}
const url = 'https://example.com/api/v1/notifiers/example';const options = { method: 'PUT', headers: {Authorization: '<Authorization>', 'Content-Type': 'application/json'}, body: '{"isActive":true,"name":"example","url":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://example.com/api/v1/notifiers/example \ --header 'Authorization: <Authorization>' \ --header 'Content-Type: application/json' \ --data '{ "isActive": true, "name": "example", "url": "example" }'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Notifier ID
Request Body required
Section titled “Request Body required ”Notifier Data
Media type application/json
object
isActive
boolean
name
required
string
url
string
Example generated
{ "isActive": true, "name": "example", "url": "example"}Responses
Section titled “ Responses ”OK
Media type */*
object
createdAt
string
groupId
string
id
string
isActive
boolean
name
string
updatedAt
string
url
string
userId
string