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

# List Records

> Retrieve a list of records matching the criteria set by the query parameter.



## OpenAPI

````yaml /api/openapi_legacy.json get /records
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:
    get:
      tags:
        - Records
      summary: List Records
      description: >-
        Retrieve a list of records matching the criteria set by the query
        parameter.
      parameters:
        - schema:
            type: string
            description: >-
              Filter records by creation timestamp. Only one timestamp filter
              may be used per request.
          required: false
          description: >-
            Filter records by creation timestamp. Only one timestamp filter may
            be used per request.
          name: created_after
          in: query
        - schema:
            type: string
            description: Alias for created_after.
          required: false
          description: Alias for created_after.
          name: createdAfter
          in: query
        - schema:
            type: string
            description: >-
              Filter records by creation timestamp. Only one timestamp filter
              may be used per request.
          required: false
          description: >-
            Filter records by creation timestamp. Only one timestamp filter may
            be used per request.
          name: created_before
          in: query
        - schema:
            type: string
            description: Alias for created_before.
          required: false
          description: Alias for created_before.
          name: createdBefore
          in: query
        - schema:
            type: string
            description: >-
              Filter records by last updated timestamp. Only one timestamp
              filter may be used per request.
          required: false
          description: >-
            Filter records by last updated timestamp. Only one timestamp filter
            may be used per request.
          name: updated_after
          in: query
        - schema:
            type: string
            description: Alias for updated_after.
          required: false
          description: Alias for updated_after.
          name: updatedAfter
          in: query
        - schema:
            type: string
            description: >-
              Filter records by last updated timestamp. Only one timestamp
              filter may be used per request.
          required: false
          description: >-
            Filter records by last updated timestamp. Only one timestamp filter
            may be used per request.
          name: updated_before
          in: query
        - schema:
            type: string
            description: Alias for updated_before.
          required: false
          description: Alias for updated_before.
          name: updatedBefore
          in: query
        - schema:
            type: string
            description: >-
              Firestore cursor ID to fetch the next page of records. Cannot be
              used with prev.
          required: false
          description: >-
            Firestore cursor ID to fetch the next page of records. Cannot be
            used with prev.
          name: next
          in: query
        - schema:
            type: string
            description: >-
              Firestore cursor ID to fetch the previous page of records. Cannot
              be used with next.
          required: false
          description: >-
            Firestore cursor ID to fetch the previous page of records. Cannot be
            used with next.
          name: prev
          in: query
        - schema:
            type: string
            description: Filter records by type (e.g., 'uccfiling', 'custom').
          required: false
          description: Filter records by type (e.g., 'uccfiling', 'custom').
          name: record_type
          in: query
        - schema:
            type: string
            description: Alias for record_type.
          required: false
          description: Alias for record_type.
          name: recordType
          in: query
        - schema:
            type: string
            description: Filter records by the unique ID of a view (bucket).
          required: false
          description: Filter records by the unique ID of a view (bucket).
          name: view_id
          in: query
        - schema:
            type: string
            description: Alias for view_id.
          required: false
          description: Alias for view_id.
          name: viewId
          in: query
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RecordsListResponse'
        '400':
          description: Bad request — invalid or unsupported query parameters
        '401':
          description: Unauthorized
components:
  schemas:
    RecordsListResponse:
      type: object
      properties:
        count:
          type: integer
          description: Number of records retrieved in request. Limited to 100.
        next:
          type:
            - string
            - 'null'
          description: URL to fetch the next batch of records.
        prev:
          type:
            - string
            - 'null'
          description: URL to fetch the previous batch of records.
        results:
          type: array
          items:
            $ref: '#/components/schemas/Record'
          description: List of matching records.
      required:
        - count
        - next
        - prev
        - results
    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

````