View as Markdown
Reflect icon

Reflect ACTION

Append Daily Note

Append to a daily note. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Reflect account once, then configure and run Append Daily Note 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: "reflect-append-daily-note",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    reflect: { authProvisionId: "apn_xxxxxxx" },
    graphId: "GraphId",
    text: "Text",
  },
})

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.

Append Daily Note inputs
Property Type Description
graphId GraphId string
The graph identifier
Required Dynamic
text Text string
Text to append to the daily note
Required
listName List Name string
Name of the list to append to
Optional
date Date string
Date of the daily note. ISO 8601 format. Defaults to today.
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
reflect-append-daily-note
Version
0.0.2
App
Reflect
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes