Get Notifiers
GET
/v1/notifiers
const url = 'https://example.com/api/v1/notifiers';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/notifiers \ --header 'Authorization: <Authorization>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
Array<object>
object
createdAt
string
groupId
string
id
string
isActive
boolean
name
string
updatedAt
string
url
string
userId
string
Example generated
[ { "createdAt": "example", "groupId": "example", "id": "example", "isActive": true, "name": "example", "updatedAt": "example", "url": "example", "userId": "example" }]