# Get Custom App Events

GET /{appId}/events

#### Description

Retrieves log events generated by a specified custom app, providing details such as timestamps, event types, and messages for monitoring and troubleshooting.

Endpoint: GET /{appId}/events
Version: 1.0
Security: oauth2

## Path parameters:

  - `appId` (string, required)
    Unique ID of the custom app.

## Response 200 fields (application/json):

  - `id` (string)
    The unique identifier for the log event.
    Example: "d88d505d-5199-11ee-a644-522476618ae8"

  - `timestamp` (string)
    The timestamp of when the log event occurred (ISO-8601 format).
    Example: "2025-01-12T18:26:10.00.5365Z"

  - `level` (string)
    The severity of the log event.
    Enum: "debug", "info", "warning", "error"

  - `message` (string)
    The log event message.
    Example: "Log event message"

  - `detail` (string)
    Detailed description of the log event.
    Example: "Log event detail"

  - `orgId` (string)
    The unique identifier for the organization.
    Example: "ce83e3cd-5199-11ee-a644-522476618ae8"

  - `userId` (string)
    The unique identifier for the user who uploaded the custom app
    Example: "d2363cab-5199-11ee-a644-522476618ae8"


