ON THIS PAGE
GET /data_classification/low_level_categories/{low_level_category_id}
SUMMARY Retrieves a low level category based on the supplied low level category ID.
Retrieves a low level category that is based on the supplied low level category ID.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
low_level_category_id |
path |
Required |
Number (Integer) |
text/plain |
Required - The id of the low level category. |
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 low level category was retrieved. |
|
404 |
1002 |
The requested low level category was not found. |
422 |
1005 |
Low level category ID must be a positive integer. |
500 |
1020 |
An error occurred during the attempt to retrieve the low level category. |
Response Description
- id - Number - The ID of the low level category.
- name - String - The name of the low level category.
- description - String - The description of the low level category.
- severity - Number - The severity of the low level category.
- high_level_category_id - Number - The ID of the parent high level category.
Response Sample
{ "id": 19001, "name": "General Audit Event", "description": "General Audit Event", "high_level_category_id": 19000, "severity" : 0 }