GET /config/flow_sources/custom_properties/regex_properties
Retrieves a list of flow regex properties.
Retrieves a list of flow regex properties.
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 flow regex properties was retrieved. |
|
422 |
1010 |
An error occurred while building the filter. |
500 |
1020 |
An error occurred during the attempt to retrieve the list of flow regex properties. |
Response Description
- id - Integer - The sequence ID of the flow regex property.
- identifier - String - The ID of the flow regex property.
- name - String - The name of the flow regex property.
- username - String - The owner of the flow regex property.
- description - String - The description of the flow regex property.
- property_type - String - The property type (string, numeric, ip, port, time) of flow regex property.
- use_for_rule_engine - Boolean - The flag that indicates if the flow regex property is parsed when the flow was captured.
- datetime_format - String - The date/time pattern that the flow regex property matches.
- locale - String - The language tag of the locale that the property matches.
Response Sample
[
{
"creation_date": 42,
"datetime_format": "String",
"description": "String",
"id": 42,
"identifier": "String",
"locale": "String",
"modification_date": 42,
"name": "String",
"property_type": "String <one of: string, numeric, ip, port, time>",
"use_for_rule_engine": true,
"username": "String"
}
]