View as Markdown
Airmeet icon

Airmeet ACTION

Create Airmeet

Creates an airmeet. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Airmeet account once, then configure and run Create Airmeet 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: "airmeet-create-airmeet",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    airmeet: { authProvisionId: "apn_xxxxxxx" },
    hostEmail: "Host Email",
    eventName: "Event Name",
  },
})

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 Airmeet inputs
Property Type Description
hostEmail Host Email string
Email of the host
Required
eventName Event Name string
Name of the event
Required
shortDesc Short Description string
Short description of the event
Required
startTime Start Time string
Start time for the event in milliseconds or ISO 8601. E.g. 1697458790918 or 2023-10-16T12:18:38+00:00
Required
endTime End Time string
End time for the event in milliseconds or ISO 8601. E.g. 1697458790918 or 2023-10-16T12:18:38+00:00
Required
timezone Timezone string
Timezone for the event in the canonical tz name. E.g. 'Asia/Kolkata'
Required

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
airmeet-create-airmeet
Version
0.0.2
App
Airmeet
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes