For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Kiwiform API
    • Introduction
    • POSTGet Access Token
    • GETVerify Connection
    • GETList All Published Forms
    • GETFetch Sample Submissions
    • POSTSubscribe to Form Submissions
    • DELUnsubscribe from Form Submissions
LogoLogo

List All Published Forms

||View as Markdown|
GET
https://api/api/zapier/forms
GET
/api/zapier/forms
$curl https://api/api/zapier/forms
200List All Published Forms_example
1[
2 {
3 "id": "clp888abcd001",
4 "title": "Customer Satisfaction Survey"
5 },
6 {
7 "id": "clp999efgh002",
8 "title": "Contact Us Form"
9 }
10]
### **Overview** Fetches a list of all forms that are currently published in your account. This is the primary resource for retrieving the `id` required to setup automation triggers or fetch submission data. ### **Authorization** - **Type:** Bearer Token - **Inheritance:** Inherit auth from parent (or use Bearer token) ### **Response Attributes (Array of objects)** | Property | Type | Description | | --- | --- | --- | | `id` | `string` | The unique UUID of the form. | | `title` | `string` | The user-defined title of the form. |
Was this page helpful?
Previous

Verify Connection

Next

Fetch Sample Submissions

Built with

Overview

Fetches a list of all forms that are currently published in your account. This is the primary resource for retrieving the id required to setup automation triggers or fetch submission data.

Authorization

  • Type: Bearer Token

  • Inheritance: Inherit auth from parent (or use Bearer token)

Response Attributes (Array of objects)

PropertyTypeDescription
idstringThe unique UUID of the form.
titlestringThe user-defined title of the form.

Response

OK
idstring
titlestring