Skip to main content

query auditing events

GET 

/org/:orgId/auditingEvent/query

Query auditing events with advanced filtering, sorting, and pagination using CRUD query language. Supports complex filters, sorting by multiple fields, and pagination.

Request

Path Parameters

    orgId stringrequired

    Organization ID

Query Parameters

    page_size integer

    Number of items per page (default: 20, max: 1000)

    page_number integer

    Page number (default: 1)

    q string

    LISP-style filter expression (e.g., '(= event_type \

    s string

    Sort fields: 'field:asc,field2:desc' or '-field,field2' format (e.g., 'creation_time:desc,event_type:asc' or '-creation_time,event_type')

Responses

Paginated list of auditing events

Schema

    data

    object[]

  • Array [

  • body

    object

    Body holds the value of the "body" field.

    property name* any

    Body holds the value of the "body" field.

    creationTime string

    CreationTime holds the value of the "creation_time" field.

    eventType string

    EventType holds the value of the "event_type" field.

    id string

    ID of the ent.

    lastUpdateTime string

    LastUpdateTime holds the value of the "last_update_time" field.

    organizationID string

    OrganizationID holds the value of the "organization_id" field.

    status github_com_sugerio_marketplace-service_pkg_orm_auditingevent.Status (string)

    Possible values: [AUDITED, PENDING, FAILED, DONE]

  • ]

  • page_number integer
    page_size integer
    total_count integer
Loading...