Skip to main content

Documentation Index

Fetch the complete documentation index at: https://houseofdragon-079a8546.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

GET /tenant/projects/{projectId}/logs
Headers: Authorization: Bearer <token> Query Parameters:
ParamTypeDefaultDescription
pagenumber1Page number
limitnumber50Results per page
statusstringallFilter: all, allowed, or blocked
rulestringFilter by rule name
Response (200):
{
  "total": 342,
  "page": 1,
  "limit": 15,
  "totalPages": 23,
  "logs": [
    {
      "id": "log_abc",
      "identifier": "user_123",
      "rule": "send_email",
      "allowed": true,
      "count": 3,
      "createdAt": "2026-05-20T14:39:47.730Z"
    },
    {
      "id": "log_def",
      "identifier": "user_456",
      "rule": "send_email",
      "allowed": false,
      "count": 11,
      "createdAt": "2026-05-20T14:38:00.000Z"
    }
  ]
}