Enterprise Get Enterprise All Alert Recipients

Enterprise Get Enterprise All Alert Recipients

Gets all recipients configured to receive all alerts for the specified enterprise.

Privileges required:

READ ENTERPRISE_ALERT

Request
URI
POST
https://{api_host}/portal/rest/enterprise/getEnterpriseAllAlertsRecipients
COPY
Request Body
{
    "enterpriseId": 0
}
integer
enterpriseId
Optional

enterpriseId

Responses
200

Request was successfully processed

{
    "emailEnabled": false,
    "emailList": [
        "string"
    ],
    "enterpriseUsers": [
        {
            "email": "string",
            "emailEnabled": 0,
            "enabled": 0,
            "enterpriseUserId": 0,
            "mobileEnabled": 0,
            "mobilePhone": "string",
            "smsEnabled": 0,
            "username": "string"
        }
    ],
    "mobileEnabled": false,
    "mobileList": [
        "string"
    ],
    "smsEnabled": false,
    "smsList": [
        "string"
    ],
    "snmpEnabled": false,
    "snmpList": [
        "string"
    ],
    "webhookEnabled": false
}
boolean
emailEnabled
Required

emailEnabled

array of string
emailList
Required

emailList

array of object
enterpriseUsers
Required

enterpriseUsers

boolean
mobileEnabled
Required

mobileEnabled

array of string
mobileList
Required

mobileList

boolean
smsEnabled
Required

smsEnabled

array of string
smsList
Required

smsList

boolean
snmpEnabled
Optional

snmpEnabled

array of string
snmpList
Optional

snmpList

boolean
webhookEnabled
Optional

webhookEnabled

webhookList
Optional

webhookList


400
Returns generic_400 of type(s) application/json
Operation doesn't return any data structure

500
Returns generic_500 of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/portal/rest/enterprise/getEnterpriseAllAlertsRecipients