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

# Get event



## OpenAPI

````yaml /openapi/program.openapi.json get /events/{eventId}
openapi: 3.1.0
info:
  title: Questra Program API
  version: 0.0.1
  description: >-
    REST API for the Questra Program product. Browser users authenticate through
    Questra Auth SSO; automation uses workspace-scoped API keys (`Authorization:
    Bearer qpk_live_…`). API keys carry scopes enforced before handlers.
    Outbound webhooks follow Standard Webhooks (at-least-once delivery;
    consumers must be idempotent).
servers:
  - url: /v1
    description: Program API base path
security: []
paths:
  /events/{eventId}:
    get:
      tags:
        - Events
      summary: Get event
      parameters:
        - schema:
            type: string
            format: uuid
          required: true
          name: eventId
          in: path
      responses:
        '200':
          description: Event
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookEventResponse'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorBody'
components:
  schemas:
    WebhookEventResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/WebhookEvent'
      required:
        - data
    ErrorBody:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        resource:
          type: string
        slug:
          type: string
        file_id:
          type: string
        endpoint_id:
          type: string
        event_id:
          type: string
        delivery_id:
          type: string
        api_key_id:
          type: string
        integration_id:
          type: string
        audit_id:
          type: string
        status:
          type: string
        details: {}
        question_ids:
          type: array
          items:
            type: string
        survey_ids:
          type: array
          items:
            type: string
        revisions:
          type: array
          items:
            type: number
      required:
        - error
    WebhookEvent:
      type: object
      properties:
        id:
          type: string
          format: uuid
        type:
          $ref: '#/components/schemas/WebhookEventType'
        api_version:
          type: string
          example: '2026-07-13'
        created_at:
          type: string
          format: date-time
        data:
          type: object
          additionalProperties: {}
          description: >-
            Event payload; shape is defined per type in the webhook event
            registry.
        pending_deliveries:
          type: integer
          minimum: 0
      required:
        - id
        - type
        - api_version
        - created_at
        - data
        - pending_deliveries
    WebhookEventType:
      type: string
      enum:
        - survey.created
        - survey.updated
        - survey.deleted
        - file.created
        - file.updated
        - file.ready
        - file.deleted
        - questionnaire.updated
        - questionnaire.clarifications.updated
        - survey.audit.updated
        - workflow.started
        - workflow.updated
        - workflow.finished
        - content.updated

````