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

# Upsert the JSON Schema for a config page



## OpenAPI

````yaml PUT /v1/agents/{agentId}/real-time-configs/{clientEnv}/schema
openapi: 3.1.0
info:
  title: PolyAI Agents API
  version: 1.0.3
  description: >-
    Build and deploy PolyAI agents programmatically. Create agents, manage
    branches, update behavior rules, configure knowledge bases, provision
    telephony, publish deployments, and update real-time configs.
servers:
  - url: https://api.us.poly.ai
    description: US region
  - url: https://api.uk.poly.ai
    description: UK region
  - url: https://api.eu.poly.ai
    description: EU region
security:
  - ApiKeyAuth: []
tags:
  - name: Agents
    description: Create, list, duplicate, and delete agents.
  - name: Branches
    description: Create isolated branches for parallel development and merge back to main.
  - name: Agent Behavior
    description: >-
      Read and update an agent's behavior rules (system prompt, interaction
      style, edge cases).
  - name: Knowledge Base
    description: Manage knowledge base topics used for retrieval and tool invocation.
  - name: Variants
    description: Manage site-specific variations of an agent using attributes and variants.
  - name: Deployments
    description: Publish drafts, promote across environments, and roll back deployments.
  - name: Connectors
    description: >-
      Manage telephony connectors that bind phone numbers to voice
      infrastructure.
  - name: Phone Numbers
    description: Provision, reassign, and delete phone numbers on an agent's connectors.
  - name: Real-Time Configs
    description: Update runtime values (e.g. opening hours) outside the publish workflow.
paths:
  /v1/agents/{agentId}/real-time-configs/{clientEnv}/schema:
    parameters:
      - name: agentId
        in: path
        required: true
        schema:
          type: string
      - name: clientEnv
        in: path
        required: true
        schema:
          type: string
    put:
      tags:
        - Real-Time Configs
      summary: Upsert the JSON Schema for a config page
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateConfigSchemaBody'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetConfigPageResponse'
        '400':
          description: Validation error
        '401':
          description: Unauthorized – missing or invalid API key
        '403':
          description: Forbidden – insufficient permissions
        '404':
          description: Resource not found
components:
  schemas:
    UpdateConfigSchemaBody:
      description: The JSON Schema definition to apply to a config page.
      type: object
      properties:
        schema:
          description: JSON Schema (Draft 7) definition
          type: object
      required:
        - schema
    GetConfigPageResponse:
      description: A single config page for one environment.
      type: object
      properties:
        clientEnv:
          description: Environment (sandbox, pre-release, live)
          type: string
        variables:
          description: Config key-value pairs
          type: object
        schema:
          description: JSON Schema (Draft 7) definition
          type: object
        lastUpdated:
          description: ISO 8601 timestamp of last update
          type: string
      required:
        - clientEnv
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````