View as Markdown
Hullo icon

Hullo ACTION

Add or Update Member

Adds a new member or updates an existing member's data in Hullo. See the documentation
  • Action
  • Writes data
  • Destructive
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Hullo account once, then configure and run Add or Update Member 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: "hullo-add-update-member",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    hullo: { authProvisionId: "apn_xxxxxxx" },
    phoneNumber: "Phone Number",
    fullName: "Full 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.

Add or Update Member inputs
Property Type Description
phoneNumber Phone Number string
The phone number of the member
Required
fullName Full Name string
The full name of the member. REQUIRED if creating a new member.
Optional
registrationDate Registration Date string
The date the member was registered in ISO-8601 format. Example: 2000-01-23T04:56:07.000+00:00
Optional
groups Groups string[]
An array containing the names of groups this member belongs to
Optional
attributes Attributes string[]
The attributes that describe the member
Optional Dynamic

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
hullo-add-update-member
Version
0.0.2
App
Hullo
Authentication
API key
Read-only
No
Destructive
Yes
Open world
Yes