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

# Release a conversational agent



## OpenAPI

````yaml api-reference/openapi3.json post /conversational_agents/{version_id}/release
openapi: 3.0.0
info:
  title: Operator API
  version: '2025-06-19'
  description: API for Operator
servers:
  - url: https://api.operator.xyz
security: []
paths:
  /conversational_agents/{version_id}/release:
    post:
      tags:
        - Conversational agents
      summary: Release a conversational agent
      parameters:
        - name: Operator-Version
          in: header
          required: true
          schema:
            type: string
            enum:
              - '2025-06-19'
          description: The API version to use.
          example: '2025-06-19'
        - name: version_id
          in: path
          required: true
          schema:
            description: >-
              Version-specific identifier for the agent instance, e.g.
              `ca_8qm9JBCiTe7@v0`
            type: string
          description: >-
            Version-specific identifier for the agent instance, e.g.
            `ca_8qm9JBCiTe7@v0`
      responses:
        '200':
          description: Successful response.
          content:
            application/json:
              schema:
                description: Response object for releasing a conversational agent.
                properties:
                  id:
                    description: Unique identifier for the released agent.
                    type: string
                  version_id:
                    description: Version-specific identifier for this agent instance.
                    type: string
                required:
                  - id
                  - version_id
                type: object
        '404':
          description: The requested resource was not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                  message:
                    type: string
                  data: {}
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````