GET /api/domainaudit/events
Returns the domain audit events settings per category.
Refer to Domain Audit Events for the events description.
Refer to Domain Audit Settings for the category and events fields description.
Each message consist is returned as a JSON string in the following format:
{
"categories": [
...
{
"categoryName": "Organization events",
"events": [
{
"id": 300,
"desc": "Organization created",
"enabled": true
},
{
"id": 301,
"desc": "Organization updated",
"enabled": true
},
{
"id": 305,
"desc": "Organization disabled",
"enabled": true
},
{
"id": 306,
"desc": "Organization deleted",
"enabled": true
},
{
"id": 307,
"desc": "Organization registration token created",
"enabled": true
},
{
"id": 308,
"desc": "Organization registration token deleted",
"enabled": true
}
]
},
...
]
}
Refer to events.json for a complete list of the valid categories, the allowed events per category, the events descriptions and the default events settings.