View as Markdown
Super Carl icon

Super Carl ACTION

Cancel Communication

Cancel a queued or in-progress Super Carl communication. Use this when a workflow needs to stop delivery before the communication reaches a terminal status. See the documentation
  • Action
  • Writes data
  • Destructive
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Super Carl account once, then configure and run Cancel Communication 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: "super_carl-cancel-communication",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    super_carl: { authProvisionId: "apn_xxxxxxx" },
    communicationId: "Communication ID",
    reason: "Reason",
  },
})

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.

Cancel Communication inputs
Property Type Description
communicationId Communication ID string
UUID returned by Send Communication, for example 550e8400-e29b-41d4-a716-446655440000.
Required
reason Reason string
Optional cancellation reason stored with the communication event log, for example Duplicate outreach detected.
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
super_carl-cancel-communication
Version
0.0.2
App
Super Carl
Authentication
API key
Read-only
No
Destructive
Yes
Open world
Yes