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

# List secret overrides

> Returns which secrets carry an override on each environment version, as secret IDs grouped by environment alias and `draft` or `published` variant; values are never included. The call is unpaginated: it takes no paging parameters, so one request yields the whole set.



## OpenAPI

````yaml /specs-prettified/realtime/openapi.stable.json get /v1/stable/secret/override
openapi: 3.0.0
info:
  title: Realtime
  description: Realtime gateway API service
  version: 1.0.0
  contact: {}
servers:
  - url: https://realtime-api.voiceflow.com
security: []
tags: []
paths:
  /v1/stable/secret/override:
    get:
      tags:
        - Secret
      summary: List secret overrides
      description: "Returns which secrets carry an override on each environment
        version, as secret IDs grouped by environment alias and `draft` or
        `published` variant; values are never included. The call is unpaginated:
        it takes no paging parameters, so one request yields the whole set."
      operationId: StableSecretController_listOverrides
      parameters:
        - name: projectID
          required: true
          in: query
          schema:
            type: string
            description: The ID of the project to operate on.
      responses:
        "200":
          description: Returns one entry per environment version that overrides a secret,
            each with the environment alias, the `draft` or `published` variant,
            and the IDs of the secrets overridden there.
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/StableSecretOverrideListResponse"
          x-vf-doc:
            description: Returns one entry per environment version that overrides a secret,
              each with the environment alias, the `draft` or `published`
              variant, and the IDs of the secrets overridden there.
      security:
        - token: []
components:
  schemas:
    StableSecretOverrideListResponse:
      type: object
      properties:
        overrides:
          type: array
          items:
            $ref: "#/components/schemas/StableSecretOverride"
      required:
        - overrides
    StableSecretOverride:
      type: object
      properties:
        environmentAlias:
          type: string
          description: The alias of the environment carrying the override (e.g. `main`).
        versionVariant:
          description: Which version of the environment carries the override — its
            editable `draft` or its `published` copy.
          allOf:
            - $ref: "#/components/schemas/VersionVariant"
          enum:
            - draft
            - published
          x-enumNames:
            - DRAFT
            - PUBLISHED
        secretIDs:
          type: array
          items:
            type: string
          description: The IDs of the secrets overridden on this environment version.
      required:
        - environmentAlias
        - versionVariant
        - secretIDs
    VersionVariant:
      type: string
      enum:
        - draft
        - published
      x-enumNames:
        - DRAFT
        - PUBLISHED
  securitySchemes:
    token:
      scheme: bearer
      bearerFormat: JWT
      type: http
      description: Voiceflow bearer token
````
