View as Markdown
Pubrio icon

Pubrio ACTION

Create Monitor

Create a new signal monitor for jobs, news, or advertisements. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Pubrio account once, then configure and run Create Monitor 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: "pubrio-create-monitor",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    pubrio: { authProvisionId: "apn_xxxxxxx" },
    name: "Name",
    detectionMode: "Detection Mode",
  },
})

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 Monitor inputs
Property Type Description
name Name string
Name for the monitor
Required
detectionMode Detection Mode string
How the monitor detects changes: company_first monitors specific companies for signals, signal_first monitors signals and matches to companies
Required
signalTypes Signal Types string[]
Types of signals to monitor
Required
destinationType Destination Type string
How to deliver monitor results
Required
webhookUrl Webhook URL string
Webhook URL for delivery (required if destination_type is webhook)
Optional
email Email string
Email address for delivery (required if destination_type is email)
Optional
sequenceIdentifier Sequence Identifier string
Outreach sequence identifier (required if destination_type is sequences)
Optional
description Description string
Description for the monitor
Optional
frequencyMinute Frequency (Minutes) integer
How often to check for new signals in minutes
Optional
maxDailyTrigger Max Daily Triggers integer
Maximum number of triggers per day
Optional
maxRecordsPerTrigger Max Records Per Trigger integer
Maximum records per trigger
Optional
companies Companies string[]
Company names to monitor
Optional
domains Domains string[]
Domains to monitor
Optional
linkedinUrls LinkedIn URLs string[]
LinkedIn URLs to monitor
Optional
companyFilters Company Filters string
JSON object of company filters
Optional
signalFilters Signal Filters string
JSON array of signal filter objects
Optional
peopleEnrichmentConfigs People Enrichment Configs string
JSON array of people enrichment configuration objects
Optional
isCompanyEnrichment Enable Company Enrichment boolean
Whether to enrich company data
Optional
isPeopleEnrichment Enable People Enrichment boolean
Whether to enrich people data
Optional
maxFailureTrigger Max Failure Triggers integer
Maximum number of failure triggers (1-10)
Optional
maxRetryPerTrigger Max Retry Per Trigger integer
Maximum retries per trigger (0-3)
Optional
retryDelaySecond Retry Delay (Seconds) integer
Delay between retries in seconds (1-5)
Optional
notificationEmail Notification Email string
Email address for failure notifications
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
pubrio-create-monitor
Version
0.0.2
App
Pubrio
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes