GET /analytics/ade_rules

Retrieves a list of ADE rules.

Retrieves a list of ADE rules.

Table 1. GET /analytics/ade_rules resource details
MIME Type

application/json

Table 2. GET /analytics/ade_rules request parameter details
Parameter Type Optionality Data Type MIME Type Description

Range

header

Optional

String

text/plain

Optional - Use this parameter to restrict the number of elements that are returned in the list to a specified range. The list is indexed starting at zero.

fields

query

Optional

String

text/plain

Optional - Use this parameter to specify which fields you would like to get back in the response. Fields that are not named are excluded. Specify subfields in brackets and multiple fields in the same object are separated by commas.

filter

query

Optional

String

text/plain

Optional - This parameter is used to restrict the elements in a list base on the contents of various fields.

Table 3. GET /analytics/ade_rules response codes
HTTP Response Code Unique Code Description

200

The ADE rules were retrieved.

422

1010

A request parameter is not valid.

500

1020

An error occurred during the attempt to retrieve the ADE rules.

Response Description

An array of ADE Rule objects. An ADE Rule object contains the following fields:
  • id - Long - The sequence ID of the ADE rule.
  • name - String - The name of the ADE rule.
  • ade_rule_type - String - The type of ADE rule: ANOMALY, BEHAVIORAL, THRESHOLD.
  • enabled - Boolean - True if the ADE rule is enabled.
  • owner - String - The owner of the ADE rule.
  • identifier - String - The unique ID of the rule. This value is typically in the form of a UUID, with the exception of legacy system rules.
  • linked_rule_identifier - String - The linked ID of the rule. This value is typically in the form of a UUID, with the exception of legacy system rules, and varies depending on the rule's origin as follows:
    • SYSTEM - The identifier value of the override rule, if one exists. If the system rule has not been overridden, the value will be null.
    • OVERRIDE - The identifier value of the system rule being overridden.
    • USER - The value will be null.
  • creation_date - Long - The number of milliseconds since epoch when the rule was created.
  • modification_date - Long - The number of milliseconds since epoch when the rule was last modified.

Response Sample


[
    {
        "creation_date": 42,
        "enabled": true,
        "id": 42,
        "identifier": "String",
        "linked_rule_identifier": "String",
        "modification_date": 42,
        "name": "String",
        "owner": "String",
        "type": "String <one of: ANOMALY, BEHAVIORAL, THRESHOLD>"
    }
]