View as Markdown
Invision Community icon

Invision Community ACTION

Create Forum Topic

Creates a new forum topic. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Invision Community account once, then configure and run Create Forum Topic 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: "invision_community-create-forum-topic",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    invision_community: { authProvisionId: "apn_xxxxxxx" },
    forumId: 10,
    title: "Title",
  },
})

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 Forum Topic inputs
Property Type Description
forumId Forum ID integer
The ID of the forum to create the topic in.
Required Dynamic
title Title string
The title of the new topic.
Required
postContent Post Content string
The content of the first post in the new topic.
Required
author Author Id integer
The ID of the author of the new topic.
Required Dynamic
tags Tags string[]
The tags for the new topic.
Optional
openTime Open Time string
The open time of the new topic Format: YYYY-MM-DDTHH:MM:SS.
Optional
closeTime Close Time string
The close time of the new topic. Format: YYYY-MM-DDTHH:MM:SS.
Optional
hidden Hidden boolean
Whether the new topic is hidden.
Required
pinned Pinned boolean
Whether the new topic is pinned.
Required
featured Featured boolean
Whether the new topic is featured.
Required

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
invision_community-create-forum-topic
Version
0.0.2
App
Invision Community
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes