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

# List all vault secret names

> Returns the names of every secret stored in WorkOS Vault for the caller's organization. Values are never returned by the list endpoint. Requires WorkOS to be enabled on the deployment.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/vault
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/vault:
    get:
      tags:
        - Vault
      summary: List all vault secret names
      description: >-
        Returns the names of every secret stored in WorkOS Vault for the
        caller's organization. Values are never returned by the list endpoint.
        Requires WorkOS to be enabled on the deployment.
      operationId: get_vault
      responses:
        '200':
          description: Secret names returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultListResponse'
        '400':
          description: WorkOS is not enabled
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VaultErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    VaultListResponse:
      type: object
      description: Response from `GET /api/vault`.
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          type: array
          items:
            $ref: '#/components/schemas/VaultSecretSummary'
      required:
        - success
        - data
      additionalProperties: true
      example:
        success: true
        data:
          - name: TWILIO_AUTH_TOKEN
          - name: OPENAI_API_KEY
          - name: STRIPE_SECRET
    VaultErrorResponse:
      type: object
      description: Error envelope returned by vault endpoints.
      properties:
        success:
          type: boolean
          enum:
            - false
        message:
          type: string
        error:
          type: string
        documentation:
          type: string
          description: Optional link to relevant documentation.
      required:
        - success
        - message
      additionalProperties: true
      example:
        success: false
        message: WorkOS is not enabled
        error: WORKOS_DISABLED
    VaultSecretSummary:
      type: object
      description: >-
        Lightweight projection of a vault secret. Values are never included in
        list responses.
      properties:
        name:
          type: string
      required:
        - name
      additionalProperties: true
      example:
        name: TWILIO_AUTH_TOKEN
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````