View as Markdown
Attio icon

Attio ACTION

Create Note

Create a plaintext note attached to a record (person, company, deal, or any object). Use when you want to log context on a record. Set Parent Object, Parent Record ID, Title, and Content. Example: Parent Object people, Parent Record ID 891dcbfc-9141-415d-9b2a-2238a6cc012d, Title Intro call, Content Discussed the Q3 rollout timeline. Returns the created note with its id. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Attio account once, then configure and run Create 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: "attio-create-note",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    attio: { authProvisionId: "apn_xxxxxxx" },
    parentObject: "Parent Object",
    parentRecordId: "Parent Record 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 Note inputs
Property Type Description
parentObject Parent Object string
The parent object the note belongs to
Required Dynamic
parentRecordId Parent Record ID string
The ID of the parent record the note belongs to. Use the List Records action to look up record IDs.
Required Dynamic
title Title string
The note title
Required
content Content string
The content of the note
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
attio-create-note
Version
0.0.8
App
Attio
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes