Prisma

Get Event

Return one audit event by id.

GET
/api/v1/audit/events/{event_id}

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Path Parameters

event_id*Event Id

Response Body

application/json

application/json

curl -X get "http://localhost:8000/api/v1/audit/events/string"
{
  "event_id": "string",
  "organization_id": "string",
  "occurred_at": "2019-08-24T14:15:22Z",
  "event_name": "string",
  "event_type": "string",
  "event_category": "string",
  "actor_id": "string",
  "actor_name": "string",
  "actor_email": "string",
  "actor_type": "string",
  "resource_type": "string",
  "resource_id": "string",
  "resource_name": "string",
  "status": "string",
  "severity": "string",
  "details": {},
  "source": "platform",
  "source_service": "string",
  "ip_address": "string",
  "user_agent": "string"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}