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

# Manage Custom Values

> List the company's custom values (variables available in templates and prompts). Secret values are masked with asterisks in the response.



## OpenAPI

````yaml GET /settings/custom-values/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /settings/custom-values/:
    get:
      tags:
        - settings
      summary: List Custom Values
      description: >-
        List the company's custom values (variables available in templates and
        prompts). Secret values are masked with asterisks in the response.
      operationId: settings_custom_values_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CustomValueListItem'
          description: ''
      security:
        - jwtAuth: []
components:
  schemas:
    CustomValueListItem:
      type: object
      properties:
        id:
          type: string
          format: uuid
        key:
          type: string
        name:
          type: string
        type:
          type: string
        value:
          type: string
          description: Masked when `secret=true`.
        secret:
          type: boolean
        created_at:
          type: string
          format: date-time
      required:
        - created_at
        - id
        - key
        - name
        - secret
        - type
        - value
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````