Pagination
Reads are paginated with a single pageSize parameter; Flow absorbs every vendor-specific cursor.
Reads are paginated with a single pageSize parameter. Underneath, every platform
paginates differently — cursors, page numbers, offsets — and Flow absorbs those differences
so you never handle a vendor-specific cursor.
curl "https://dev.flow.staging.linktoany.com/api/1.0/standalone-link-engine-service/unified/{accountId}/product?mappingKey={readKey}&pageSize=100" \
-H "authorization: Bearer <token>"| Parameter | In | Required | Description |
|---|---|---|---|
pageSize | Query | No | Maximum records to return per page. The effective ceiling depends on the backing platform's own page limits — smaller of the two wins. |
Writes are not paginated — each POST pushes exactly one record. For bulk pushes, send
records sequentially and respect the per-system rate limits.