Skip to main content
POST
/
records
/
{typeId}
Create Record
curl --request POST \
  --url https://next.floweq.com/api/v1/records/{typeId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "293ce860-4667-4ab8-a1a8-99c63f2a601d": "This is a text field",
  "970bf74e-9350-42ff-b722-64da9c0134a3": true,
  "a7e644fc-bcad-4344-b9da-819fbda53554": "2026-01-30",
  "a90de5ec-3773-46ab-b41b-02791cf9e552": 42,
  "04d1460d-8cee-497a-b7ee-71116bb035c2": "This is a required field"
}
'
{
  "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

typeId
string
required

Custom record type ID.

Body

application/json

Map of custom field UIDs to their values. Date fields must be formatted as YYYY-MM-DD strings.

{key}

Response

Record created successfully.

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