v1

latestOpenAPI 3.0.02026-08-064311,0881.3 MB
extractionRuleManagement

Get a list of field extraction rules.

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

get/v1/extractionRules

Query parameters

limitinteger

Limit the number of field extraction rules returned in the response. The number of field extraction rules returned may be less than the limit.

tokenstring

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 field extraction rules.

nextstring

Next continuation token.

Example response

{
  "data": [
    {
      "name": "ExtractionRule123",
      "scope": "_sourceHost=127.0.0.1",
      "parseExpression": "csv _raw extract 1 as f1",
      "createdAt": "2018-10-16T09:10:00Z",
      "createdBy": "0000000006743FDD",
      "modifiedAt": "2018-10-16T09:10:00Z",
      "modifiedBy": "0000000006743FE8"
    }
  ]
}