Notifier endpoints
Retrieve notifier
Annotation endpoints
API token endpoints
Dataset endpoints
Monitor endpoints
Notifier endpoints
Notifier endpoints
Retrieve notifier
Get notifier by ID
GET
/
notifiers
/
{id}
curl --request GET \
--url https://api.axiom.co/v2/notifiers/{id} \
--header 'Authorization: Bearer <token>'
{
"createdAt": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"disabledUntil": "<string>",
"id": "<string>",
"name": "<string>",
"properties": {
"customWebhook": {
"body": "<string>",
"headers": {},
"secretHeaders": {},
"url": "<string>"
},
"discord": {
"discordChannel": "<string>",
"discordToken": "<string>"
},
"discordWebhook": {
"discordWebhookUrl": "<string>"
},
"email": {
"emails": [
"<string>"
]
},
"microsoftTeams": {
"microsoftTeamsUrl": "<string>"
},
"opsgenie": {
"apiKey": "<string>",
"isEU": true
},
"pagerduty": {
"routingKey": "<string>",
"token": "<string>"
},
"slack": {
"slackUrl": "<string>"
},
"webhook": {
"url": "<string>"
}
}
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Response
200 - application/json
Notifier
Was this page helpful?
curl --request GET \
--url https://api.axiom.co/v2/notifiers/{id} \
--header 'Authorization: Bearer <token>'
{
"createdAt": "2023-11-07T05:31:56Z",
"createdBy": "<string>",
"disabledUntil": "<string>",
"id": "<string>",
"name": "<string>",
"properties": {
"customWebhook": {
"body": "<string>",
"headers": {},
"secretHeaders": {},
"url": "<string>"
},
"discord": {
"discordChannel": "<string>",
"discordToken": "<string>"
},
"discordWebhook": {
"discordWebhookUrl": "<string>"
},
"email": {
"emails": [
"<string>"
]
},
"microsoftTeams": {
"microsoftTeamsUrl": "<string>"
},
"opsgenie": {
"apiKey": "<string>",
"isEU": true
},
"pagerduty": {
"routingKey": "<string>",
"token": "<string>"
},
"slack": {
"slackUrl": "<string>"
},
"webhook": {
"url": "<string>"
}
}
}