Skip to main content
GET
/
records
List Records
curl --request GET \
  --url https://next.floweq.com/api/v1/records
{
  "count": 123,
  "next": "<string>",
  "prev": "<string>",
  "results": [
    {
      "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": {}
    }
  ]
}

Query Parameters

created_after
string

Filter records by creation timestamp. Only one timestamp filter may be used per request.

createdAfter
string

Alias for created_after.

created_before
string

Filter records by creation timestamp. Only one timestamp filter may be used per request.

createdBefore
string

Alias for created_before.

updated_after
string

Filter records by last updated timestamp. Only one timestamp filter may be used per request.

updatedAfter
string

Alias for updated_after.

updated_before
string

Filter records by last updated timestamp. Only one timestamp filter may be used per request.

updatedBefore
string

Alias for updated_before.

next
string

Firestore cursor ID to fetch the next page of records. Cannot be used with prev.

prev
string

Firestore cursor ID to fetch the previous page of records. Cannot be used with next.

record_type
string

Filter records by type (e.g., 'uccfiling', 'custom').

recordType
string

Alias for record_type.

view_id
string

Filter records by the unique ID of a view (bucket).

viewId
string

Alias for view_id.

Response

Successful response

count
integer
required

Number of records retrieved in request. Limited to 100.

next
string | null
required

URL to fetch the next batch of records.

prev
string | null
required

URL to fetch the previous batch of records.

results
object[]
required

List of matching records.

Last modified on April 15, 2026