Use REST API to Configure Email Notifications

Using the REST API, Administrators can also configure who should receive email notifications when connectivity is broken and restored.

Using REST API, the Administrator can rovide comma separated list of emails IDs to which to send the notififcations using PATCH /admin/v1/Settings/Settings.

Example payload:
{
    "schemas":[       
      "urn:ietf:params:scim:api:messages:2.0:PatchOp"
    ],
    "Operations":[
       {
           "op": "replace",
           "path":         "contactEmails",
           "value": [             
        "admin@oracle.com",             
        "<emailid>@gmail.com"             
      ]
       }
          
             ]
}

For more information about how to use SCIM APIs, see REST API for Oracle Identity Cloud Service.