Skip to main content
GET
/
v1
/
orgs
/
{orgSlug}
/
audit
List audit events for an organization
curl --request GET \
  --url https://{host}/v2/workspaces/slug:ai-governance-v2/webhooks/v1/orgs/{orgSlug}/audit \
  --header 'Authorization: Bearer <token>'
{
  "orgSlug": "<string>",
  "period": {
    "start": 123,
    "end": 123
  },
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123
  },
  "count": 123,
  "logs": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "category": "<string>",
      "action": "<string>",
      "actor": {},
      "target": {},
      "changes": {},
      "reason": "<string>",
      "metadata": {},
      "correlationId": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

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

Authorizations

Authorization
string
header
required

User session JWT or instance API key (iak_*). Send as Authorization: Bearer <token>.

Path Parameters

orgSlug
string
required

Organization slug.

Maximum string length: 64
Pattern: ^[a-zA-Z0-9_-]+$

Query Parameters

category
enum<string>

Filter by category.

Available options:
member,
role,
org,
sso,
quota,
apikey,
auth
Maximum string length: 32
action
string

Filter by action (created, updated, deleted, etc.).

Maximum string length: 32
dateStart
string<date-time>

ISO start (default last 7 days).

Maximum string length: 64
dateEnd
string<date-time>

ISO end (default now).

Maximum string length: 64
limit
string

Max results (default 50).

page
string

Page number (default 1).

Response

Audit log entries.

orgSlug
string
period
object
pagination
object
count
integer
logs
object[]