Retrieve an endpoint by ID
GET/v1/endpoints/:id
Returns a JSON object representing a notification endpoint configured in the account. Please ensure to change the region in the URL to match your account's region.
Request
Path Parameters
id int32required
ID of the notification endpoint
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
endpointType string
Possible values: [BigPanda
, Slack
, Datadog
, Custom
, PagerDuty
, VictorOps
, Opsgenie
, ServiceNow
, Microsoft Teams
]
The notification endpoint type that will receive alert messages
id int32
ID of the notification endpoint
title string
Name of the endpoint
description string
Detailed description of the endpoint
{
"endpointType": "Slack",
"id": 88,
"title": "Slack",
"description": "Endpoint for sending alerts to Slack"
}
Loading...