View as Markdown
ProdPad icon

ProdPad ACTION

Create Feedback

Creates feedback. See the documentation.
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's ProdPad account once, then configure and run Create Feedback 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: "prodpad-create-feedback",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    prodpad: { authProvisionId: "apn_xxxxxxx" },
    feedback: "Feedback",
    contactId: "Contact ID",
  },
})

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 Feedback inputs
Property Type Description
feedback Feedback string
The feedback text. This field accepts HTML and is stored as UTF-8.
Required
contactId Contact ID string
The ID of the contact providing the feedback. Either Contact ID or Contact Name is required.
Optional Dynamic
contactName Contact Name string
The name of the contact. Either Contact ID or Contact Name is required.
Optional
contactEmail Email string
The email of the contact. It is also used to avoid duplication of contacts and can only be filled in with Contact Name.
Optional
company Company string
The ID of the company to link the contact to. It can only be filled in with Contact Name.
Optional Dynamic
tagIds Tag IDs string[]
Tag IDs to link to the feedback.
Optional Dynamic
personaIds Persona IDs string[]
Persona IDs to link to the feedback.
Optional Dynamic
productIds Product IDs string[]
Product IDs to link to the feedback.
Optional Dynamic

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
prodpad-create-feedback
Version
0.0.4
App
ProdPad
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes