View as Markdown
Gravity Forms icon

Gravity Forms ACTION

Create Entry

Creates a new entry in a Gravity Forms form. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Gravity Forms account once, then configure and run Create Entry from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "gravity_forms-create-entry",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    gravity_forms: { authProvisionId: "apn_xxxxxxx" },
    formId: "Form ID",
    createdBy: 10,
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Create Entry inputs
Property Type Description
formId Form ID string
The ID of the form for which to create or get entries.
Required Dynamic
createdBy Created By integer
The user ID of the entry submitter.
Optional
dateCreated Date Created string
The date the entry was created, in UTC. Format: YYYY-MM-DD HH:MM:SS
Optional
ip IP string
The IP address of the entry creator.
Optional
isFulfilled Is Fulfilled boolean
Whether the transaction has been fulfilled, if applicable.
Optional
isRead Is Read boolean
Whether the entry has been read.
Optional
isStarred Is Starred boolean
Whether the entry is starred.
Optional
sourceUrl Source Url string
The URL where the form was embedded.
Optional
status Status string
The status of the entry.
Optional
userAgent User Agent string
The user agent string for the browser used to submit the entry.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
gravity_forms-create-entry
Version
0.0.2
App
Gravity Forms
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes