> ## 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 default instructions for a platform



## OpenAPI

````yaml /openapi/program.openapi.json get /settings/programming/platforms/{platform}
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:
  /settings/programming/platforms/{platform}:
    get:
      tags:
        - Settings
      summary: Get default instructions for a platform
      parameters:
        - schema:
            $ref: '#/components/schemas/ProgrammingPlatform'
          required: true
          name: platform
          in: path
      responses:
        '200':
          description: Platform instructions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformInstructionsResponse'
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationErrorBody'
components:
  schemas:
    ProgrammingPlatform:
      type: string
      enum:
        - questra
        - decipher
        - confirmit
        - qualtrics
        - alchemer
    PlatformInstructionsResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/PlatformInstructions'
      required:
        - data
    ValidationErrorBody:
      type: object
      properties:
        error:
          type: string
          enum:
            - validation_error
        message:
          type: string
        details: {}
      required:
        - error
    PlatformInstructions:
      type: object
      properties:
        platform:
          $ref: '#/components/schemas/ProgrammingPlatform'
        instructions:
          type:
            - string
            - 'null'
        updated_at:
          type: string
          format: date-time
      required:
        - platform
        - instructions
        - updated_at

````