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

> ## Agent Instructions
> Treat Stackdome as an application-delivery platform for coding agents and developers, not as a Kubernetes dashboard.
> Prefer the Stackdome agent plugin as the user entry point and the stackdome CLI as the execution interface.
> Route agents who need the maintained deploy skill to npx skills add stackdome/skills and the complete operational workflow to /guides/ai-agents.
> Verify commands and flags with stackdome --help. Run stackdome init before authoring stackfile.yaml and stackdome validate before deploying.
> Use -o json for automation and verify documented terminal states before claiming success.
> Never request a user's account password. Use API-token authentication.
> During alpha, Stackdome Cloud is ephemeral and capacity-limited, and each organization can connect one cluster.
> Do not expose Kubernetes as a user concern unless the task is self-hosting or infrastructure architecture.

# List release events ordered by sequence



## OpenAPI

````yaml /openapi.yaml get /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/releases/{release_id}/events
openapi: 3.0.0
info:
  description: >-
    Deploy, debug, and operate applications through the Stackdome REST API on
    Stackdome Cloud or a self-hosted installation. This API is in alpha and may
    change before general availability.
  title: Stackdome API
  version: 0.0.1-alpha
servers:
  - url: /
security: []
paths:
  /api/v1/organizations/{org_id}/projects/{project_name}/stacks/{id}/releases/{release_id}/events:
    get:
      tags:
        - Releases
      summary: List release events ordered by sequence
      operationId: listReleaseEvents
      parameters:
        - description: The ID of the organization
          explode: false
          in: path
          name: org_id
          required: true
          schema:
            type: string
          style: simple
        - description: The name of the project
          explode: false
          in: path
          name: project_name
          required: true
          schema:
            type: string
          style: simple
        - description: The id of record
          explode: false
          in: path
          name: id
          required: true
          schema:
            type: string
          style: simple
        - explode: false
          in: path
          name: release_id
          required: true
          schema:
            type: string
          style: simple
        - explode: true
          in: query
          name: after_sequence
          required: false
          schema:
            default: 0
            type: integer
          style: form
        - explode: true
          in: query
          name: limit
          required: false
          schema:
            default: 100
            maximum: 500
            type: integer
          style: form
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReleaseEventList'
          description: Release events ordered by sequence
      security:
        - Bearer: []
components:
  schemas:
    ReleaseEventList:
      example:
        next_after_sequence: 6
        items:
          - release_id: release_id
            metadata:
              key: metadata
            level: info
            source: hub
            type: type
            message: message
            occurred_at: '2000-01-23T04:56:07.000Z'
            sequence: 0
            stack_id: stack_id
            scope: release
            links:
              - kind: kind
                label: label
                target:
                  key: target
              - kind: kind
                label: label
                target:
                  key: target
            id: id
            resource_name: resource_name
          - release_id: release_id
            metadata:
              key: metadata
            level: info
            source: hub
            type: type
            message: message
            occurred_at: '2000-01-23T04:56:07.000Z'
            sequence: 0
            stack_id: stack_id
            scope: release
            links:
              - kind: kind
                label: label
                target:
                  key: target
              - kind: kind
                label: label
                target:
                  key: target
            id: id
            resource_name: resource_name
      properties:
        items:
          items:
            $ref: '#/components/schemas/ReleaseEvent'
          type: array
        next_after_sequence:
          type: integer
      type: object
    ReleaseEvent:
      example:
        release_id: release_id
        metadata:
          key: metadata
        level: info
        source: hub
        type: type
        message: message
        occurred_at: '2000-01-23T04:56:07.000Z'
        sequence: 0
        stack_id: stack_id
        scope: release
        links:
          - kind: kind
            label: label
            target:
              key: target
          - kind: kind
            label: label
            target:
              key: target
        id: id
        resource_name: resource_name
      properties:
        id:
          type: string
        release_id:
          type: string
        stack_id:
          type: string
        sequence:
          type: integer
        occurred_at:
          format: date-time
          type: string
        source:
          enum:
            - hub
            - cluster
          type: string
        scope:
          enum:
            - release
            - resource
          type: string
        resource_name:
          type: string
        type:
          type: string
        level:
          enum:
            - info
            - success
            - warning
            - error
          type: string
        message:
          type: string
        links:
          items:
            $ref: '#/components/schemas/ReleaseEventLink'
          type: array
        metadata:
          additionalProperties:
            type: string
          type: object
      type: object
    ReleaseEventLink:
      example:
        kind: kind
        label: label
        target:
          key: target
      properties:
        kind:
          type: string
        label:
          type: string
        target:
          additionalProperties:
            type: string
          type: object
      type: object
  securitySchemes:
    Bearer:
      bearerFormat: JWT
      scheme: bearer
      type: http

````