CONNECT APP
Build with Livestorm
Business Management
- OAuth
MCP
Give your agent Livestorm tools
Every Livestorm action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's Livestorm account for each tool call — you store no tokens.
// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
"x-pd-app-slug": "livestorm",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// e.g. run Create Event:
const result = await mcp.callTool({
name: "livestorm-create-event",
arguments: {
ownerId: "Owner ID",
title: "Title",
},
})# access_token: mint a short-lived token with the Connect SDK — see the MCP guide
headers = {
"Authorization": f"Bearer {access_token}",
"x-pd-project-id": "{project_id}",
"x-pd-environment": "production",
"x-pd-external-user-id": "{external_user_id}", # any stable ID for this user in your system
"x-pd-app-slug": "livestorm",
}
async with streamablehttp_client("https://remote.mcp.pipedream.net/v3", headers=headers) as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await session.list_tools()
# e.g. run Create Event:
result = await session.call_tool("livestorm-create-event", {
"ownerId": "Owner ID",
"title": "Title",
})API PROXY
Call the Livestorm API directly
For an endpoint with no pre-built tool, the Connect proxy forwards your request to the Livestorm API with the connected user's credentials attached. You store no tokens and write no refresh logic.
const resp = await pd.proxy.get({
externalUserId: "{external_user_id}", // any stable ID for this user in your system
accountId: "apn_xxxxxxx",
url: "https://api.livestorm.co/v1/events",
})
// Any allowed Livestorm endpoint works here. Pipedream attaches the
// connected account's credentials to the outgoing request.# The path segment is the target URL, URL-safe base64 encoded:
# https://api.livestorm.co/v1/events
curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkubGl2ZXN0b3JtLmNvL3YxL2V2ZW50cw?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
-H "Authorization: Bearer {access_token}" \
-H "x-pd-environment: production"SDK
Run Livestorm actions from your backend
Connect a user's Livestorm account once, then run Create Event on their behalf from your own code — TypeScript, Python, or plain HTTP.
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-create-event",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
livestorm: { authProvisionId: "apn_xxxxxxx" },
ownerId: "Owner ID",
title: "Title",
},
})from pipedream import Pipedream
pd = Pipedream(
client_id="{oauth_client_id}",
client_secret="{oauth_client_secret}",
project_id="{project_id}",
project_environment="production",
)
result = pd.actions.run(
id="livestorm-create-event",
external_user_id="{external_user_id}", # any stable ID for this user in your system
configured_props={
"livestorm": {"authProvisionId": "apn_xxxxxxx"},
"ownerId": "Owner ID",
"title": "Title",
},
)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "livestorm-create-event",
"configured_props": {
"livestorm": { "authProvisionId": "apn_xxxxxxx" },
"ownerId": "Owner ID",
"title": "Title"
}
}'TOOLS
Livestorm actions
On-demand operations your product or agent can configure and run on behalf of a connected user.
-
Create Event
actionCreate a new event. See the DocumentationWritev0.0.2 -
Get Event
actionRetrieve a single event. See the DocumentationRead-onlyv0.0.2 -
List Attendees From Event
actionList all the people linked to all the sessions of an event. See the DocumentationRead-onlyv0.0.2 -
List Event ID Options
actionRetrieves available options for the Event ID field.Read-onlyv0.0.1 -
List Events
actionList the events of your workspace. See the DocumentationRead-onlyv0.0.2 -
List Session ID Options
actionRetrieves available options for the Session ID field.Read-onlyv0.0.1 -
List Sessions
actionList all your event sessions. See the DocumentationRead-onlyv0.0.2 -
Register Someone For A Session
actionRegister a new participant for a session (either an external registrant or internal team member). See the DocumentationWritev0.0.2 -
Update Event
actionUpdate an event with its full list of attributes. See the DocumentationWritev0.0.2
EVENTS
Livestorm triggers
Event sources your backend can deploy for users and receive through a webhook.
-
New Registrant
triggerEmit new event when a new registrant is added. See the DocumentationInstantv0.0.1 -
Registrant Attended Webinar
triggerEmit new event when a registrant attended a Livestorm webinar. See the DocumentationInstantv0.0.1 -
Registrant Did Not Attend
triggerEmit new event when a registrant did not attend a Livestorm webinar. See the DocumentationInstantv0.0.1 -
Webinar Completed
triggerEmit new event when a Livestorm webinar is completed. See the DocumentationInstantv0.0.1
- App slug
- livestorm
- Authentication
- OAuth
- Categories
- Business Management
- Actions
- 9
- Triggers
- 4
- API proxy
- Available
OAuth scopes
These are the scopes Pipedream's managed Livestorm OAuth client requests when one of your users connects an account. Supply your own OAuth client to request a different set.
- full:write