View as Markdown
Brilliant Directories icon

Brilliant Directories ACTION

Create User

Creates a new user record in the website database. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Brilliant Directories account once, then configure and run Create 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: "brilliant_directories-create-user",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    brilliant_directories: { authProvisionId: "apn_xxxxxxx" },
    firstName: "First Name",
    lastName: "Last 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 User inputs
Property Type Description
firstName First Name string
The first name for the new user.
Optional
lastName Last Name string
The last name for the new user.
Optional
email Email string
The email address for the new user.
Required
password Password string
The password for the new user.
Required
subscriptionId Subscription ID string
The subscription ID associated with the new user.
Required
company Company string
The company for the new user.
Optional
phoneNumber Phone Number string
The phone number to the new user.
Optional
address1 Address 1 string
The address 1 for the new user.
Optional
address2 Address 2 string
The address 2 for the new user.
Optional
city City string
The city for the new user.
Optional
zipCode Zip Code string
The zip code for the new user.
Optional
stateCode State Code string
The state code for the new user.
Optional
countryCode Country Code string
The country code for the new user.
Optional
website Website string
The website for the new user.
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
brilliant_directories-create-user
Version
0.0.2
App
Brilliant Directories
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes