> ## 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 workspace integration settings

> Workspace policy for upstream integrations, including which response modes Program may query (`none`, `test`, or `production`).



## OpenAPI

````yaml /openapi/program.openapi.json get /settings/integrations
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/integrations:
    get:
      tags:
        - Settings
      summary: Get workspace integration settings
      description: >-
        Workspace policy for upstream integrations, including which response
        modes Program may query (`none`, `test`, or `production`).
      responses:
        '200':
          description: Integration settings
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntegrationSettingsResponse'
components:
  schemas:
    IntegrationSettingsResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/IntegrationSettings'
      required:
        - data
    IntegrationSettings:
      type: object
      properties:
        response_data_access:
          $ref: '#/components/schemas/ResponseDataAccess'
        updated_at:
          type: string
          format: date-time
      required:
        - response_data_access
        - updated_at
    ResponseDataAccess:
      type: string
      enum:
        - none
        - test
        - production
      description: >-
        Which upstream response modes this workspace may query. `production`
        includes test. Default is `test`.
      example: test

````