List notifiers
List notifiers
Every destination monitors can route to.
Credentials are never returned — only the type and the human-readable target.
GET
/v1/notifiersThis endpoint takes no parameters.
curl -X GET https://api.logstreem.com/v1/notifiers \
-H "Authorization: Bearer $LOGSTREEM_TOKEN"Responses
200OK
{
"object": "list",
"data": [
{
"object": "notifier",
"id": "ntf_1d7e4b3a09c2f856d4a1",
"name": "On-call",
"type": "pagerduty",
"target": "Platform — Primary",
"created_at": "2026-08-02T09:40:00.000Z"
}
],
"has_more": false,
"next_cursor": null
}401Unauthorized
{
"error": {
"type": "authentication_error",
"code": "missing_token",
"message": "No API token provided.",
"doc_url": "https://logstreem.com/docs/errors#missing_token",
"request_id": "req_9f3c2a7b41de08c5b2e6"
}
}Try itsandbox