View as Markdown
Evenium icon

Evenium ACTION

Create Event

Creates a new event. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Evenium account once, then configure and run Create Event 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: "evenium-create-event",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    evenium: { authProvisionId: "apn_xxxxxxx" },
    title: "Title",
    startDate: "Start Date",
  },
})

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 Event inputs
Property Type Description
title Title string
The title of the event
Required
startDate Start Date string
The start date of the event in RFC 3339 format (e.g., 2010-07-10T07:00:00.000Z)
Required
endDate End Date string
The end date of the event in RFC 3339 format (e.g., 2010-07-12T17:00:00.000Z)
Required
description Description string
The description of the event
Optional
addressName Address Name string
The name of the address
Optional
addressStreet Address Street string
The street of the address
Optional
addressCity Address City string
The city of the address
Optional
addressCountryCode Address Country Code string
The country code of the address
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
evenium-create-event
Version
0.0.1
App
Evenium
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes