GET /data_classification/dsm_event_mappings
Retrieve a list of DSM event mappings.
Retrieves a list of DSM event mappings.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
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. |
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. |
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
- 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"
}
]