View as Markdown
Apollo (API Key) icon

Apollo (API Key) ACTION

Add Contacts to Sequence

Adds one or more contacts to a sequence in Apollo.io. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Apollo (API Key) account once, then configure and run Add Contacts to Sequence 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: "apollo_io-add-contacts-to-sequence",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    apollo_io: { authProvisionId: "apn_xxxxxxx" },
    sequenceId: "Sequence ID",
    contactIds: ["Contact 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 Contacts to Sequence inputs
Property Type Description
sequenceId Sequence ID string
Identifier of a sequence
Required Dynamic
contactIds Contact IDs string[]
Identifiers of the contacts to add to sequence
Required Dynamic
emailAccountId Email Account ID string
Identifier of the email account to send email from
Required Dynamic
sequenceNoEmail Sequence No Email boolean
Whether to still sequence the contact if he/she does not have an email address
Optional
sequenceActiveInOtherCampaigns Sequence Active in Other Campaigns boolean
Whether to still sequence the contact if he/she is active or paused in another sequence
Optional
sequenceFinishedInOtherCampaigns Sequence Finished in Other Campaigns boolean
Whether to still sequence the contact if he/she already finished another sequence
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
apollo_io-add-contacts-to-sequence
Version
0.0.8
App
Apollo (API Key)
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes