• Home
  • Dynatrace API
  • Configuration
  • Notifications
  • GET all notifications

Notifications API - GET all notification configurations

Lists all notification configurations available in your environment.

You can use the ID of a notification configuration to request detailed information about it with the GET a notification configuration request.

The request produces an application/json payload.

GETManaged https://{your-domain}/e/{your-environment-id}/api/config/v1/notifications
SaaS https://{your-environment-id}.live.dynatrace.com/api/config/v1/notifications
Environment ActiveGate https://{your-activegate-domain}/e/{your-environment-id}/api/config/v1/notifications

Authentication

To execute this request, you need an access token with Read configuration (ReadConfig) scope. To learn how to obtain and use it, see Tokens and authentication.

Parameters

The request doesn't provide any configurable parameters.

Response

Response codes

CodeTypeDescription
200NotificationConfigStubListDto

Success

Response body objects

The NotificationConfigStubListDto object

ElementTypeDescription
valuesNotificationConfigStub[]-

Can be null.

The NotificationConfigStub object

The short representation of a notification.

ElementTypeDescription
idstring

The ID of the Dynatrace entity.

namestring

The name of the Dynatrace entity.

Can be null.

descriptionstring

A short description of the Dynatrace entity.

Can be null.

typestring

The type of the notification.

The element can hold these values
  • ANSIBLETOWER
  • EMAIL
  • HIPCHAT
  • JIRA
  • OPS_GENIE
  • PAGER_DUTY
  • SERVICE_NOW
  • SLACK
  • TRELLO
  • VICTOROPS
  • WEBHOOK
  • XMATTERS

Can be null.

Response body JSON model

json
{ "values": [ { "id": "string", "name": "string", "description": "string", "type": "ANSIBLETOWER" } ] }