Request URL

Notification Group can be created using two methods:

PUT https://api.dotcom-monitor.com/config_api_v1/groups
POST  https://api.dotcom-monitor.com/config_api_v1/groups?verb=PUT

 Header Parameters

Content-Type: application/json
Example PUT / POST body
{
"Name": "Notification Group",
"Scheduler_Id": 0,
"Addresses": [{
"Address": "email@company.com",
"Template_Id": 0,
"Type": "Email"
}, {
"Code": "011",
"Number": "1234567",
"Template_Id": 0,
"Type": "Phone"
}, {
"Number": "0111234567",
"Template_Id": 0,
"Type": "Sms"
}],
}

Required Body Parameters

To specify a JSON object parameters for a new notification group, we recommend you get an existed group info first and use the response as a sample for a new group object. Find the description of the fields in the API: Notification Group Methods Overview.

The following fields are required in the request body:

Field Type Required/Optional Description

Name

string

required

The name of a new group.

Example:
"Name""QA Dep"

Success Response

Example response
{
"Success":true,
"Result":637
}
Field

Type

Description

Result

int32

The unique id for the group.