Overview
This endpoint returns all forms in your SitePlot instance with pagination support. You can filter results to show only active forms and control the number of results per page.Authentication
Bearer token with your API key:
Bearer YOUR_API_KEYQuery Parameters
Page number for pagination. Must be 1 or greater.
Number of items per page. Must be between 1 and 100.
If set to
true, returns only active forms. If omitted, returns all forms regardless of status.Response
Array of form objects
Pagination metadata
Error Responses
Use Cases
Get All Forms
Retrieve all forms in your system for administrative purposes or form management interfaces.Filter Active Forms
Use theactive=true parameter to get only forms that are currently accepting submissions.
Paginate Large Result Sets
For systems with many forms, use pagination to efficiently load forms in smaller chunks.Related Endpoints
- Get Form Submissions - Retrieve submissions for a specific form
