Gravity Forms integration | Zervanor
← All connectors

Gravity Forms

Also an agent tool
productivity

Gravity Forms REST API v2 integration (entries-first v1): form reads, entry CRUD + search, entry notifications, form submission + validation, aggregate results, and add-on feed reads. Self-hosted WordPress plugin — per-instance base URL via {config.site_base_url} (ADR-030). HTTP Basic auth (base64 consumer_key:consumer_secret over HTTPS). OAuth 1.0a two-legged is the vendor alternate for HTTP-only sites but is NOT in this pack: the v4 oauth1_config requires three-legged request/authorize/access token URLs which two-legged Gravity Forms does not have (gravity-forms-04). No inbound webhook API — change notification is polling on search_entries (gravity-forms-02).

17 actions · 1 triggers

The Gravity Forms integration lets you connect Gravity Forms to your automations with 17 actions and 1 triggers — and every action is also a tool an AI agent can call. Examples: List Forms, Get Form, Get Form Field Filters, Search Entries, Get Form Entries. No blank-canvas wiring — connect it and use it in your workflows.

Every action below is also a tool an AI agent can call — the same pack powers your workflows and your agents.

Triggers 1

Events in Gravity Forms that can start a workflow.

polling

New or updated Gravity Forms entry

Polls GET /entries sorted by date_created ascending and de-dupes by id; new entries since the last run trigger the workflow. Gravity Forms has no inbound webhook (gravity-forms-02), so polling is the v1 trigger path.

Actions 17

What Zervanor can do in Gravity Forms.

Forms9

GET

List Forms

List all Gravity Forms (id, title, entry counts). GET /forms.

GET

Get Form

Get a full form object (fields, confirmations, notifications). GET /forms/{form_id}.

GET

Get Form Field Filters

Get the searchable field filters (valid keys + operators) for a form. GET /forms/{form_id}/field-filters.

GET

Get Form Entries

List entries for a specific form. GET /forms/{form_id}/entries.

POST

Create Form Entry

Create an entry for a specific form. POST /forms/{form_id}/entries. Returns the created entry with the new id at top-level 'id'.

POST

Submit Form

Run a full form submission (validation + confirmations + feeds + entry creation). POST /forms/{form_id}/submissions. Field input names are passed as keys (input_1, input_1.3 for sub-inputs).

POST

Validate Form Submission

Validate submission input only (no entry created). POST /forms/{form_id}/submissions/validation.

GET

Get Form Results

Get aggregated field results for a form. GET /forms/{form_id}/results. May return status:incomplete while computation runs (gravity-forms-08).

GET

Get Form Feeds

List feeds for a specific form. GET /forms/{form_id}/feeds.

Entries6

GET

Search Entries

Search/list entries across forms. GET /entries. JSON-structured query params (search, sorting, paging) are passed as JSON-encoded query string values. Polling source for new/updated entries.

GET

Get Entry

Get a single entry by id. GET /entries/{entry_id}.

POST

Create Entry

Create an entry (body must include form_id). POST /entries. Returns the created entry with the new id at top-level 'id'. Inserts a raw entry with no downstream feed/notification firing.

PUT

Update Entry

Replace/update an entry. PUT /entries/{entry_id}. WARNING: full-object replace — field values not provided are BLANKED OUT (gravity-forms-07). Use a read-modify-write pattern. Returns the updated entry.

DELETE

Delete Entry

Trash an entry (status:trash); force=1 permanently deletes. DELETE /entries/{entry_id}.

POST

Send Entry Notifications

Trigger notifications for an entry. POST /entries/{entry_id}/notifications.

Feeds2

GET

List Feeds

List all add-on feeds. GET /feeds.

GET

Get Feed

Get a specific feed object. GET /feeds/{feed_id}.

Automations using Gravity Forms

Build your own automation with Gravity Forms in the visual builder.

Frequently asked questions

What can I automate with Gravity Forms?

17 actions are available — for example: List Forms, Get Form, Get Form Field Filters, Search Entries, Get Form Entries, and more.

Which Gravity Forms events can start a workflow?

1 triggers — for example: New or updated Gravity Forms entry.

Can Gravity Forms be used as an AI agent tool?

Yes. Every Gravity Forms action automatically becomes a tool an AI agent can call — the same pack powers both your workflows and your agents.

How is the Gravity Forms integration modelled?

Gravity Forms is modelled as a versioned connector pack, and the steps that need reasoning fall to first-party agents hosted in the same runtime as the workflows.