DocsAPI ReferenceForm/bff/form/list
getFormAdmin BFF

/bff/form/list

Returns a paginated list of forms for the organisation, ordered by last update. Each form includes its record count (number of submissions).

FormgetBffFormList

Parameters

2 query

2 total
Query · 2
pagestring

Page number (1-based) for pagination.

limitstring

Maximum items per page (1–500, default 50).

Request

GET /bff/form/list

get
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"

Response

JSON payload

{
  "items": [
    {
      "id": "example_id",
      "name": "example_name",
      "description": "example_description",
      "active": false,
      "recordCount": 0
    }
  ],
  "itemCount": 0
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key