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

# Update Conversation Form Data

> Validate and persist manual edits to conversation form_data.



## OpenAPI

````yaml /api-reference/openapi.json patch /api/v1/agents/{agent_id}/conversations/{conversation_id}/form_data
openapi: 3.1.0
info:
  description: >
    Create and run form-filling voice agents, and read back the conversations
    they had.


    Send your API key on every request as `Authorization: Bearer fb_live_...`.

    A key belongs to one workspace and only reaches that workspace's agents.
    Create

    and revoke keys from Settings in the web app; keys cannot manage other keys.
  title: FormBharo API
  version: 1.0.0
servers:
  - description: Production
    url: https://form-fill-agent-backend.artpark.ai
security:
  - apiKey: []
paths:
  /api/v1/agents/{agent_id}/conversations/{conversation_id}/form_data:
    patch:
      tags:
        - Agents
      summary: Update Conversation Form Data
      description: Validate and persist manual edits to conversation form_data.
      operationId: >-
        update_conversation_form_data_api_v1_agents__agent_id__conversations__conversation_id__form_data_patch
      parameters:
        - in: path
          name: agent_id
          required: true
          schema:
            title: Agent Id
            type: string
        - in: path
          name: conversation_id
          required: true
          schema:
            title: Conversation Id
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateFormDataRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UpdateFormDataResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security: []
components:
  schemas:
    UpdateFormDataRequest:
      description: Manual form field updates for a conversation.
      properties:
        updates:
          additionalProperties: true
          title: Updates
          type: object
      title: UpdateFormDataRequest
      type: object
    UpdateFormDataResponse:
      description: >-
        Result of a manual form edit: the conversation's saved values +
        statuses.
      properties:
        form_data:
          additionalProperties: true
          title: Form Data
          type: object
        form_status:
          additionalProperties: true
          title: Form Status
          type: object
      required:
        - form_data
        - form_status
      title: UpdateFormDataResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    apiKey:
      bearerFormat: fb_live_...
      scheme: bearer
      type: http

````