GET /data_classification/dsm_event_mappings

Retrieve a list of DSM event mappings.

Retrieves a list of DSM event mappings.

Table 1. GET /data_classification/dsm_event_mappings resource details
MIME Type

application/json

Table 2. GET /data_classification/dsm_event_mappings 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 /data_classification/dsm_event_mappings response codes
HTTP Response Code Unique Code Description

200

The requested list of DSM event mappings was retrieved.

500

1020

An error occurred during the attempt to retrieve the list of DSM event mappings.

Response Description

A list of DSM event mappings. A DSM event mapping contains the following fields:
  • id - Number - The ID of the DSM event mapping.
  • log_source_type_id - Number - The ID of the Log Source Type this DSM event mapping resource is associated with.
  • log_source_event_id - String - The primary identifying value parsed from an event to be used to look up the corresponding QID record.
  • log_source_event_category - String - The secondary identifying value parsed from an event to be used to look up the corresponding QID record.
  • custom_event - Boolean - Flag to identify if the DSM event mapping is system provided (custom_event=false) or user-provided (custom_event=true).
  • qid_record_id - Number - The ID of the QID record to which this DSM event mapping provides a mapping.
  • uuid - String - The uuid of the DSM event mapping.

Response Sample


[
    {
        "custom_event": true,
        "id": 42,
        "log_source_event_category": "String",
        "log_source_event_id": "String",
        "log_source_type_id": 42,
        "qid_record_id": 42,
        "uuid": "String"
    }
]