View as Markdown
Rex icon

Rex ACTION

Create Reminder

Creates a new reminder in Rex. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Rex account once, then configure and run Create Reminder 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: "rex-create-reminder",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    rex: { authProvisionId: "apn_xxxxxxx" },
    reminderType: "Reminder Type",
    remindeeId: "Remindee",
  },
})

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 Reminder inputs
Property Type Description
reminderType Reminder Type string
The type of lead
Required
remindeeId Remindee string
Identifier of a user to be the remindee
Required Dynamic
date Reminder Date string
The reminder date. Example: 2019-12-30
Required
description Description string
Description of the reminder
Required
priority Priority string
The priority of the reminder
Optional
propertyId Property string
Identifier of a property
Optional Dynamic
contactId Contact string
Identifier of a contact
Optional Dynamic
listingId Listing string
Identifier of a listing
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
rex-create-reminder
Version
0.0.2
App
Rex
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes