From 13cf6b37f1a67e08a3bc629f27b8ced911f4b14b Mon Sep 17 00:00:00 2001 From: Abhishek Chatterjee Date: Wed, 18 Feb 2026 11:59:19 +0530 Subject: [PATCH] Enhance API documentation with pagination details Added pagination options to API request examples and updated query parameters table. --- source/includes/_forms.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/includes/_forms.md b/source/includes/_forms.md index 83f4295..6f36434 100644 --- a/source/includes/_forms.md +++ b/source/includes/_forms.md @@ -6,6 +6,12 @@ curl -u "AOI6-LFKL-VM1Q-IEX9":"footastic" "https://fishbowl.wufoo.com/api/v3/forms.json" ``` +With pagination (limit and page as query parameters): + +```shell +curl -u "AOI6-LFKL-VM1Q-IEX9":"footastic" "https://fishbowl.wufoo.com/api/v3/forms.json?limit=10&page=1" +``` + ```python import urllib2 import json @@ -167,6 +173,8 @@ format | Either 'json' or 'xml' is required. This will determine response for Parameter | Default | Description ------------------ | ------- | ----------- +page | 1 | Page number for pagination. Must be a positive number; if invalid, defaults to 1. +limit | 1000 | Number of forms to return per page. Default is 1000, maximum is 1000. Negative numbers are not supported. includeTodayCount | false | If set to true, includes the number of entries received today pretty | false | If set to true, returns the result in a "pretty print" format