View as Markdown
Livestorm icon

Livestorm ACTION

Register Someone For A Session

Register a new participant for a session (either an external registrant or internal team member). See the Documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Livestorm account once, then configure and run Register Someone For A Session 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: "livestorm-register-someone-for-session",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    livestorm: { authProvisionId: "apn_xxxxxxx" },
    sessionId: "Session ID",
    referrer: "Referrer",
  },
})

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.

Register Someone For A Session inputs
Property Type Description
sessionId Session ID string
The ID of the session.
Required Dynamic
referrer Referrer string
The referrer of the person registering for the session.
Optional
utmSource UTM Source string
The UTM source of the person registering for the session.
Optional
utmMedium UTM Medium string
The UTM medium of the person registering for the session.
Optional
utmCampaign UTM Campaign string
The UTM campaign of the person registering for the session.
Optional
utmTerm UTM Term string
The UTM term of the person registering for the session.
Optional
utmContent UTM Content string
The UTM content of the person registering for the session.
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
livestorm-register-someone-for-session
Version
0.0.2
App
Livestorm
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes