POST /data_classification/dsm_event_mappings/{dsm_event_mapping_id}
Updates an existing custom DSM event mapping.
Updates an existing custom DSM event mapping.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
dsm_event_mapping_id |
path |
Required |
Number (Integer) |
text/plain |
Required - The ID of the DSM event mapping. |
fields |
header |
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. |
Parameter | Data Type | MIME Type | Description | Sample |
---|---|---|---|---|
data |
Object |
application/json |
Required - The DSM event mapping to be updated that might contain the following field:
|
{ "qid_record_id": 42 } |
HTTP Response Code | Unique Code | Description |
---|---|---|
200 |
The DSM event mapping was updated. |
|
404 |
1002 |
The requested DSM event mapping was not found. |
422 |
1005 |
Invalid parameter provided while updating the DSM event mapping. |
500 |
1020 |
An error occurred during the attempt to update a DSM event mapping. |
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"
}