View as Markdown
SlickText icon

SlickText ACTION

Add Contact To Lists

Add a contact to lists. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's SlickText account once, then configure and run Add Contact To Lists 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: "slicktext-add-contact-to-lists",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    slicktext: { authProvisionId: "apn_xxxxxxx" },
    contactId: "Contact ID",
    listIds: ["List IDs"],
  },
})

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.

Add Contact To Lists inputs
Property Type Description
contactId Contact ID string
The ID of the contact to be updated
Required Dynamic
listIds List IDs string[]
A list of List IDs that represent the list(s) the contact will be added to
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
slicktext-add-contact-to-lists
Version
0.0.2
App
SlickText
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes