View as Markdown
Tettra icon

Tettra ACTION

Suggest Page

Creates a new page suggestion in Tettra. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Tettra account once, then configure and run Suggest Page 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: "tettra-suggest-page",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    tettra: { authProvisionId: "apn_xxxxxxx" },
    title: "Title",
    description: "Description",
  },
})

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.

Suggest Page inputs
Property Type Description
title Title string
Title of the page suggestion
Required
description Description string
More context about the suggested page
Optional
category Category ID string
Select a category or provide a category ID
Optional Dynamic
assignableId Assignable ID string
Select a user to assign the suggestion, or provide a user ID
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
tettra-suggest-page
Version
0.0.2
App
Tettra
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes