> ## 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.

# Retrieve a Record

> Retrieve a Workboard record with the specified record ID.



## OpenAPI

````yaml /api/openapi_lambda.json get /records/{record}
openapi: 3.1.0
info:
  title: FlowEQ - Beta API
  description: FlowEQ Beta REST API
  version: '1.0'
  contact:
    name: FlowEQ
    url: https://www.floweq.com
    email: support@floweq.com
servers:
  - url: https://api.floweq.com/v1
security:
  - bearerAuth: []
paths:
  /records/{record}:
    get:
      tags:
        - Records
      summary: Retrieve a Record
      description: Retrieve a 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
      responses:
        '200':
          description: The requested record.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Record'
        '401':
          description: Unauthorized
        '404':
          description: Record not found
components:
  schemas:
    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

````