Skip to main content

Formidable Forms

With Formidable Forms modules in Make, you can:

  • watch entries

  • create, update, retrieve, and delete an entry, retrieve and delete forms, delete a field, retrieve a form field

  • list the entries, form entries, form fields, and forms

To get started with Formidable Forms, create an account at formidableforms.com

Connect Formidable Forms to Make

To connect the Formidable Forms app, you need to obtain the API Key and insert it into the Formidable Forms module scenario.

  1. Log in to your Formidable Forms account.

  2. Click Formidable  > Global Settings >API.

    formidable-forms-2.png
  3. Copy the API Key to a safe place.

  4. In your Make account, insert a Formidable Forms module in your scenario and click the Add button next to the Connection field.

    formidable-forms-1.gif
  5. In the Connection name field, enter a name for the connection.

  6. In the API Key field, enter the details copied in step 2 and click Save.

You have successfully established the connection. You can now begin editing your scenario and adding more Formidable Form modules. If your connection needs reauthorization at any point, follow the connection renewal steps here.

Triggers

You can watch entries using the following modules.

Triggers when an entry has been created or updated.

Webhook name

Enter a name for the webhook.

Connection

Establish a connection to your Formidable Forms account.

Form ID

Select or map the Form ID whose entries you want to watch.

Actions

You can create, update, retrieve, and delete an entry, retrieve and delete forms, delete a field, and retrieve a form field using the following modules.

Creates an entry of form.

For field descriptions, see the Formidable Forms Actions API reference.

Deletes an entry.

Connection

Establish a connection to your Formidable Forms account.

Entry ID

Select or map the Entry ID you want to delete.

Delete a field from a form.

Connection

Establish a connection to your Formidable Forms account.

Form ID

Select or map the Form ID whose fields you want to delete.

Field ID

Select or map the Field ID you want to delete.

Deletes a form.

Connection

Establish a connection to your Formidable Forms account.

Form ID

Select or map the Form ID you want to delete.

Retrieves entry by ID.

Connection

Establish a connection to your Formidable Forms account.

Entry ID

Select or map the Entry ID whose details you want to retrieve.

Retrieves a single form.

Connection

Establish a connection to your Formidable Forms account.

Form ID

Select or map the Form ID whose details you want to retrieve.

Return HTML

Select whether to return the HTML

Retrieves a field from a form.

Connection

Establish a connection to your Formidable Forms account.

Form ID

Select or map the Form ID whose fields you want to retrieve.

Field ID

Select or map the Field ID whose details you want to retrieve.

Updates an entry.

Connection

Establish a connection to your Formidable Forms account.

Form ID

Select or map the Form ID whose entry you want to update.

Entry ID

Select or map the Entry ID whose details you want to update.

For field descriptions, see the Formidable Forms Actions API reference.

Performs an arbitrary authorized API call.

Note

For the list of available endpoints, refer to the Formidable Forms API documentation.

Connection

Establish a connection to your Formidable Forms account.

URL

Enter a path relative to https://test.malimanek.com/wp-json/frm. For example, /v2/entries.

Method

GET

to retrieve information for an entry.

POST

to create a new entry.

PUT

to update/replace an existing entry.

PATCH

to make a partial entry update.

DELETE

to delete an entry.

Headers

Enter the desired request headers. You don't have to add authorization headers; we already did that for you.

Query String

Enter the request query string.

Body

Enter the body content for your API call.

Example of Use - List Form Fields

The following API call returns all fields of a form from your account.

URL: /v2/forms/form id/fields

Method: GET

formidable-forms-4.png

Matches of the search can be found in the module's Output under Bundle > Body

Our example returned 5 fields.

formidable-forms-3.png

Searches

You can list the entries, form entries, form fields, and forms using the following modules.

Retrieves entries from all forms.

Connection

Establish a connection to your Formidable Forms account.

Limit

Set the maximum number of entries Make will return during one execution cycle. The default value is 10.

Retrieves all entries in a form.

Connection

Establish a connection to your Formidable Forms account.

Form ID

Select or map the Form ID whose entries you want to list.

Limit

Set the maximum number of form entries Make will return during one execution cycle. The default value is 10.

Retrieves all fields from a form.

Connection

Establish a connection to your Formidable Forms account.

Form ID

Select or map the Form ID whose fields you want to list.

Limit

Set the maximum number of form fields Make will return during one execution cycle. The default value is 10.

Retrieves all forms.

Connection

Establish a connection to your Formidable Forms account.

Limit

Set the maximum number of forms Make will return during one execution cycle. The default value is 10.