> ## Documentation Index
> Fetch the complete documentation index at: https://docs.membrane.agency/llms.txt
> Use this file to discover all available pages before exploring further.

# list-external-event-log-records

> List external event log records — webhook/event deliveries received from connected apps, with type and timing. Good source for activity/event-volume dashboards.



## OpenAPI

````yaml /api-reference/membrane-api.json get /external-event-log-records
openapi: 3.0.0
info:
  title: Membrane API
  description: API documentation for Membrane Engine
  version: '1.0'
  contact: {}
servers:
  - url: https://api.getmembrane.com
security:
  - bearer: []
tags: []
paths:
  /external-event-log-records:
    get:
      summary: list-external-event-log-records
      description: >-
        List external event log records — webhook/event deliveries received from
        connected apps, with type and timing. Good source for
        activity/event-volume dashboards.
      operationId: listExternalEventLogRecords
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            description: Maximum number of items to return (1-1000)
            type: integer
            minimum: 1
            maximum: 1000
        - name: cursor
          in: query
          required: false
          schema:
            description: Pagination cursor from a previous response
            type: string
        - name: tenantId
          in: query
          required: false
          schema:
            type: string
        - name: userId
          in: query
          required: false
          schema:
            type: string
        - name: connectionId
          in: query
          required: false
          schema:
            type: string
        - name: integrationId
          in: query
          required: false
          schema:
            type: string
        - name: externalEventSubscriptionId
          in: query
          required: false
          schema:
            type: string
        - name: externalEventTypeId
          in: query
          required: false
          schema:
            type: string
        - name: status
          in: query
          required: false
          schema:
            type: string
            enum:
              - created
              - error
              - success
        - name: externalAppId
          in: query
          required: false
          schema:
            type: string
        - name: from
          in: query
          required: false
          schema:
            type: string
        - name: to
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: >-
            List external event log records — webhook/event deliveries received
            from connected apps, with type and timing. Good source for
            activity/event-volume dashboards.
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      type: object
                      properties: {}
                      additionalProperties: {}
                  cursor:
                    type: string
                required:
                  - items
                additionalProperties: false
components:
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````