v1

latestOpenAPI 3.1.02026-07-263644911022.4 KB
Audit API

Search Audit Events

Retrieve a paginated list of audit events. Supports filtering by event type, action, result, resource, and date range. Results use cursor-based pagination.

get/v1/audit-events

Query parameters

eventTypestring

Filter by event type (e.g., WORKFLOW_CREATED, EXECUTION_STARTED).

actionstring

Filter by action (e.g., CREATE, UPDATE, DELETE, ACTIVATE, DEACTIVATE, DRAFT, EXECUTE).

result'SUCCESS' | 'FAILED'

Filter by result.

resourceType'workflow' | 'execution' | 'provider_config'

Filter by resource type.

resourceIdstring uuid

Filter by resource ID.

dateFromstring date-time

Start of the date range filter (RFC 3339 format).

dateTostring date-time

End of the date range filter (RFC 3339 format).

limitinteger

Maximum number of items per page. Defaults to 20. Must be between 1 and 100.

cursorstring

Cursor for pagination. Use the value from the nextCursor field in a previous response to retrieve the next page.

sortOrder'ASC' | 'DESC'

Sort direction. Use ASC for ascending or DESC for descending.

Response

Indicates that the request was successful and the response contains the requested data.

nextCursorstring

Cursor for the next page. Empty if this is the last page.

hasMoreboolean

Whether more pages are available.

Example response

{
  "items": [
    {
      "eventId": "9d8e7f6a-5b4c-4321-9876-a1b2c3d4e5f6",
      "eventType": "WORKFLOW_CREATED",
      "action": "CREATE",
      "result": "SUCCESS",
      "resourceId": "550e8400-e29b-41d4-a716-446655440000",
      "resourceType": "workflow",
      "actor": {
        "type": "user",
        "id": "d4e5f6a7-b8c9-4012-d345-444444444444",
        "ipAddress": "192.168.1.100"
      },
      "timestamp": "2026-03-17T14:35:15Z",
      "hash": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2",
      "previousHash": "f6e5d4c3b2a1f0e9d8c7b6a5f4e3d2c1b0a9f8e7d6c5b4a3f2e1d0c9b8a7f6e5"
    }
  ],
  "nextCursor": "9d8e7f6a-5b4c-4321-9876-a1b2c3d4e5f6",
  "hasMore": true
}