View as Markdown
Attio icon

Attio ACTION

Delete List Entry

Delete an entry from a list (this removes the record from the list, not the underlying record itself). Destructive — confirm the entry before deleting. Use List List ID Options to find a List ID, then choose the Entry ID to remove. Example: List ID 33ebdbe9-e529-47c9-b894-0ba25e9c15c0, Entry ID 2e6e29ea-c4e9-4f4b-9b1e-7f2c1a0d9c11. Returns the API confirmation. See the documentation
  • Action
  • Writes data
  • Destructive
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Attio account once, then configure and run Delete List Entry 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-delete-list-entry",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    attio: { authProvisionId: "apn_xxxxxxx" },
    listId: "List ID",
    entryId: "Entry 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.

Delete List Entry inputs
Property Type Description
listId List ID string
The identifier of a list
Required Dynamic
entryId Entry ID string
The identifier of a list entry
Required 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
attio-delete-list-entry
Version
0.0.8
App
Attio
Authentication
OAuth
Read-only
No
Destructive
Yes
Open world
Yes