View as Markdown
Raisely icon

Raisely ACTION

Create or Update User

Create or update a user in Raisely. See the documentation
  • Action
  • Writes data
  • Destructive
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Raisely account once, then configure and run Create or Update User 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: "raisely-create-or-update-user",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    raisely: { authProvisionId: "apn_xxxxxxx" },
    email: "Email",
    firstName: "First 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 or Update User inputs
Property Type Description
email Email string
Email address of the user
Required
firstName First Name string
First name of the user
Optional
lastName Last Name string
Last name of the user
Optional
address1 Address Line 1 string
Line 1 of the address of the user
Optional
address2 Address Line 2 string
Line 2 of the address of the user
Optional
suburb Suburb string
The suburb/city of the user
Optional
state State string
The state/province of the user
Optional
postcode Postcode string
Postal Code of the user
Optional
country Country string
The country of the user. Examples: AU, GB, US
Optional
merge Merge boolean
When set to true, instead of creating a new user, this request will update a user with a matching email identity with the data provided.
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
raisely-create-or-update-user
Version
0.0.2
App
Raisely
Authentication
API key
Read-only
No
Destructive
Yes
Open world
Yes