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

# Update a Record

> Update a specific Workboard record with the specified record ID.



## OpenAPI

````yaml /api/openapi_legacy.json patch /records/{record}
openapi: 3.1.0
info:
  title: FlowEQ - Legacy API
  description: FlowEQ Legacy REST API
  version: '1.0'
  contact:
    name: FlowEQ
    url: https://www.floweq.com
    email: support@floweq.com
servers:
  - url: https://next.floweq.com/api/v1
security:
  - bearerAuth: []
paths:
  /records/{record}:
    patch:
      tags:
        - Records
      summary: Update a Record
      description: Update a specific Workboard record with the specified record ID.
      parameters:
        - schema:
            type: string
            description: The Workboard record ID.
          required: true
          description: The Workboard record ID.
          name: record
          in: path
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RecordPatchBody'
      responses:
        '200':
          description: Details of the updated record.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Record'
        '400':
          description: Bad request
        '401':
          description: Unauthorized
components:
  schemas:
    RecordPatchBody:
      type: object
      additionalProperties:
        anyOf:
          - type: boolean
          - type: number
          - type: string
    Record:
      type: object
      properties:
        id:
          type: string
          description: Unique record identifier.
        record_type:
          type: string
          description: >-
            Record type identifier (e.g., 'uccfiling', 'custom',
            'infoleaseasset').
        uid:
          description: Record type definition UID.
        status:
          type: string
          description: Current status of the record.
        parent_record:
          description: Parent record object, or null if none.
        child_records:
          type: array
          items: {}
          description: List of child record objects.
        instance:
          description: >-
            The underlying instance object (InfoleaseAsset, UCCFiling, or
            PurchasedLabel), if applicable.
        fields:
          type: object
          additionalProperties: {}
          description: Custom field values keyed by field name.
        linked:
          type: object
          additionalProperties:
            type: object
            additionalProperties: {}
          description: Linked external objects, keyed by source then object name.
        created_at:
          type: string
          description: ISO 8601 creation timestamp.
        updated_at:
          type: string
          description: ISO 8601 last updated timestamp.
        views:
          type: array
          items:
            type: string
          description: List of view IDs this record belongs to.
      required:
        - record_type
        - status
        - child_records
        - created_at
        - updated_at
        - views

````