Parameters
2 query
Query parameters
· 2pagestringOptionalPage number (1-based) for pagination.
Example
1limitstringOptionalMaximum items per page (1–500, default 50).
Example
50Returns a paginated list of forms for the organisation, ordered by last update. Each form includes its record count (number of submissions).
2 query
pagestringOptionalPage number (1-based) for pagination.
1limitstringOptionalMaximum items per page (1–500, default 50).
501 status code documented
itemsobject[]RequiredidstringRequiredForm code (unique identifier within the organisation).
namestringRequiredForm display name.
descriptionstringOptionalForm description.
activebooleanRequiredWhether the form is active and accepting submissions.
recordCountnumberRequiredNumber of submitted records.
insertedDateDate | string | string | numberRequiredWhen the form was created.
When the form was created.
updatedDateDate | string | string | numberRequiredLast update.
Last update.
itemCountnumberRequiredTotal number of forms (for pagination).
{
"items": [
{
"id": "example_id",
"name": "example_name",
"description": "example_description",
"active": false,
"recordCount": 0
}
],
"itemCount": 0
}GET /bff/form/list
curl -X GET "https://api.bizkithub.com/bff/form/list?page=1&limit=50" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.