Skip to main content
POST
/
model-monitor
/
v2
/
api
/
notification
/
channel-config
Create or Update existing channel config for notifications in DMM.
curl --request POST \
  --url https://api.example.com/model-monitor/v2/api/notification/channel-config \
  --header 'Content-Type: application/json' \
  --header 'X-Domino-Api-Key: <api-key>' \
  --data '
{
  "host": "<string>",
  "port": 123,
  "username": "<string>",
  "password": "<string>",
  "sender": "<string>",
  "recipients": "<string>",
  "configType": "<string>",
  "tlsEnabled": true
}
'
{
  "host": "<string>",
  "port": 123,
  "username": "<string>",
  "password": "<string>",
  "sender": "<string>",
  "recipients": "<string>",
  "configType": "<string>",
  "tlsEnabled": true,
  "id": "<string>",
  "createdAt": 123,
  "updatedAt": 123
}

Authorizations

X-Domino-Api-Key
string
header
required

Body

application/json

SMTP channel config used to send mail notifications in Domino Model Monitor.

host
string

SMTP host.

port
integer

SMTP port.

username
string

SMTP username.

password
string

SMTP password.

sender
string

mail address to be used to send mail notification alerts.

recipients
string

mail addresses of the recipients globally configured for mail notification alerts.

configType
string

Notification Config type

tlsEnabled
boolean

SMTP TLS enabled.

Response

Notification Channel Config was updated successfully.

Channel config to be used to send notifications to a particular channel via Domino Model Monitor.

host
string

SMTP host.

port
integer

SMTP port.

username
string

SMTP username.

password
string

SMTP password.

sender
string

mail address to be used to send mail notification alerts.

recipients
string

mail addresses of the recipients globally configured for mail notification alerts.

configType
string

Notification Config type

tlsEnabled
boolean

SMTP TLS enabled.

id
string

Channel Config's Unique identifier.

createdAt
integer

Creation timestamp of the Channel Config in Domino Model Monitor.

updatedAt
integer

Last update timestamp for the Channel Config in Domino Model Monitor.