v63

latestOpenAPI 3.0.0Proprietaryraw.githubusercontent.com2026-08-0110571.8 MB
Logs
x-internal

Search and retrieve trigger event logs

Search and retrieve trigger event logs with advanced filtering capabilities including search parameters

post/api/v3.1/internal/trigger/logs

Request body

time'5m' | '30m' | '6h' | '1d' | '1w' | '1month' | '1y'

Return logs from the last N time units

fromnumber nullable

Start time for logs (epoch timestamp in milliseconds)

tonumber nullable

End time for logs (epoch timestamp in milliseconds)

status'all' | 'success' | 'error'

Filter logs by their status level

searchstring

Search term to filter logs

integrationIdstring uuid
entityIdstring
userIdstring

Filter logs by user ID

limitnumber nullable

The limit of trigger logs to return

cursorstring nullable
include_payloadboolean

Whether to include payload fields in the response. Set to false for faster list views.

Example request

{
  "time": "5m",
  "status": "success"
}

Response

Successfully retrieved trigger logs

nextCursorstring nullable required

Example response

{
  "data": [
    {
      "type": "trigger",
      "meta": {
        "type": "trigger"
      }
    }
  ]
}