> ## 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-action-run-logs

> List action run logs — the history of action executions with status and timing. Good source for operational dashboards (success rates, throughput, recent failures).



## OpenAPI

````yaml /api-reference/membrane-api.json get /action-run-logs
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:
  /action-run-logs:
    get:
      summary: list-action-run-logs
      description: >-
        List action run logs — the history of action executions with status and
        timing. Good source for operational dashboards (success rates,
        throughput, recent failures).
      operationId: listActionRunLogs
      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: actionId
          in: query
          required: false
          schema:
            type: string
        - name: universalActionId
          in: query
          required: false
          schema:
            type: string
        - name: integrationActionId
          in: query
          required: false
          schema:
            type: string
        - name: connectionActionId
          in: query
          required: false
          schema:
            type: string
        - name: integrationId
          in: query
          required: false
          schema:
            type: string
        - name: connectionId
          in: query
          required: false
          schema:
            type: string
        - name: tenantId
          in: query
          required: false
          schema:
            type: string
        - name: userId
          in: query
          required: false
          schema:
            type: string
        - name: status
          in: query
          required: false
          schema:
            type: string
            enum:
              - success
              - error
        - 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 action run logs — the history of action executions with status
            and timing. Good source for operational dashboards (success rates,
            throughput, recent failures).
          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

````