v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
dynamicParsingRuleManagement

Get a list of dynamic parsing rules.

Get a list of all dynamic parsing rules. The response is paginated with a default limit of 100 dynamic parsing rules per page.

get/v1/dynamicParsingRules

Query parameters

limitinteger
Example:10

Limit the number of dynamic parsing rules returned in the response. The number of dynamic parsing rules returned may be less than the limit.

tokenstring
Example:0000000001C51FF7

Continuation token to get the next page of results. A page object with the next continuation token is returned in the response body. Subsequent GET requests should specify the continuation token to get the next page of results.

Response

A paginated list of dynamic parsing rules.

nextstring

Next continuation token.

Example response

{
  "data": [
    {
      "name": "DynamicParsingRule123",
      "scope": "_sourceHost=127.0.0.1",
      "id": "0000000001C41EE4"
    }
  ],
  "next": "0000000001C51FF7"
}