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

# Update Records



## OpenAPI

````yaml /api-reference/openapi-filtered.json put /insight/update/
openapi: 3.1.0
info:
  title: Aseed Insight API
  version: 0.1.0
servers:
  - url: https://app.aseed.ai/custdev
security: []
tags:
  - name: insight
    description: 'Core insight endpoints: records, transcripts, generation, and chat.'
    x-displayName: Insight
  - name: insight_public
    description: Public insight endpoints for shared/public access.
    x-displayName: Insight Public
  - name: projects
    description: Project management endpoints.
    x-displayName: Projects
  - name: project_reports
    description: Project report generation and management endpoints.
    x-displayName: Project Reports
  - name: project_reports_public
    description: Public project report endpoints.
    x-displayName: Project Reports Public
  - name: prompts
    description: Custom prompts management endpoints.
    x-displayName: Prompts
  - name: presets
    description: Presets and templates endpoints.
    x-displayName: Presets
  - name: agent
    description: AI agent threads and chat endpoints.
    x-displayName: Agent
  - name: interviews
    description: AI interviewer room and session endpoints.
    x-displayName: Interviews
  - name: webhooks
    description: Incoming webhook endpoints.
    x-displayName: Webhooks
paths:
  /insight/update/:
    put:
      tags:
        - insight
      summary: Update Records
      operationId: update_records_insight_update__put
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateRecordsRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    UpdateRecordsRequest:
      properties:
        change_names:
          items:
            $ref: '#/components/schemas/ChangeName'
          type: array
          title: Change Names
        for_archive:
          items:
            type: string
            format: uuid
          type: array
          title: For Archive
        for_delete:
          items:
            type: string
            format: uuid
          type: array
          title: For Delete
        delete_link:
          items:
            type: string
            format: uuid
          type: array
          title: Delete Link
        assign_link:
          items:
            $ref: '#/components/schemas/AssignLink'
          type: array
          title: Assign Link
        change_status:
          items:
            $ref: '#/components/schemas/ChangeStatus'
          type: array
          title: Change Status
      type: object
      required:
        - change_names
        - for_archive
        - for_delete
        - delete_link
      title: UpdateRecordsRequest
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ChangeName:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          maxLength: 128
          minLength: 1
          title: Name
      type: object
      required:
        - id
        - name
      title: ChangeName
    AssignLink:
      properties:
        record_id:
          type: string
          format: uuid
          title: Record Id
        project_id:
          type: string
          format: uuid
          title: Project Id
      type: object
      required:
        - record_id
        - project_id
      title: AssignLink
    ChangeStatus:
      properties:
        record_id:
          type: string
          format: uuid
          title: Record Id
        status:
          type: string
          title: Status
      type: object
      required:
        - record_id
        - status
      title: ChangeStatus
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````