List entries of a form
Returns entries of a form owned by the current user, paginated by cursor.
Order by serial_number ascending by default, or pass sort. Every form field
appears as a top-level key on each entry under its api_code; the JSON value type
follows the field’s type (see the Entry schema).
Optionally filter with filter: a URL-encoded JSON array of conditions, all ANDed
together (see the FilterCondition schema). pagination.total reflects the
filtered count.
Required scope: entry:read.
Authorizations
Personal Access Token prefixed with fh_. Sent as Authorization: Bearer fh_xxx.
The scope required by each endpoint is listed in that endpoint's description.
Path Parameters
Form token
Query Parameters
Page size (1..100, default 20)
x <= 100Pagination cursor returned in the previous response as pagination.next_cursor
URL-encoded JSON array of filter conditions (see FilterConditions). All conditions are ANDed.
Comma-separated sort keys; prefix a key with - for descending. Sort over form field api_codes and serial_number/created_at/updated_at. Example: -field_3,field_1.