Skip to main content
GET
/
records
/
{record}
Retrieve a Record
curl --request GET \
  --url https://api.floweq.com/v1/records/{record}
{
  "record_type": "<string>",
  "status": "<string>",
  "child_records": [
    "<unknown>"
  ],
  "created_at": "<string>",
  "updated_at": "<string>",
  "views": [
    "<string>"
  ],
  "id": "<string>",
  "uid": "<unknown>",
  "parent_record": "<unknown>",
  "instance": "<unknown>",
  "fields": {},
  "linked": {}
}

Path Parameters

record
string
required

The Workboard record ID.

Response

The requested record.

record_type
string
required

Record type identifier (e.g., 'uccfiling', 'custom', 'infoleaseasset').

status
string
required

Current status of the record.

child_records
any[]
required

List of child record objects.

created_at
string
required

ISO 8601 creation timestamp.

updated_at
string
required

ISO 8601 last updated timestamp.

views
string[]
required

List of view IDs this record belongs to.

id
string

Unique record identifier.

uid
any

Record type definition UID.

parent_record
any

Parent record object, or null if none.

instance
any

The underlying instance object (InfoleaseAsset, UCCFiling, or PurchasedLabel), if applicable.

fields
object

Custom field values keyed by field name.

linked
object

Linked external objects, keyed by source then object name.

Last modified on April 15, 2026