v1

latestOpenAPI 3.0.32026-07-1710494199.0 KB
audit-rules

List all fired rules

get/audit-rules/

Query parameters

namestring

Filter by rule audit name.

orderingstring

Which field to use when ordering the results.

pageinteger

A page number within the paginated result set.

page_sizeinteger

Number of results to return per page.

Response

Return a list of fired rules.

countinteger
nextstring uri nullable
previousstring uri nullable
page_sizeinteger nullable
pageinteger nullable

Example response

{
  "count": 123,
  "next": "/eda/api/v1/example/?page=51&page_size=100",
  "previous": "/eda/api/v1/example/?page=49&page_size=100",
  "page_size": 100,
  "page": 50,
  "results": [
    {
      "activation_instance": {
        "id": 0,
        "name": "string"
      },
      "organization": {
        "id": 0,
        "name": "string",
        "description": "string"
      }
    }
  ]
}