View as Markdown
Awardco icon

Awardco ACTION

Recognize Without Recognition Program

Submit recognition in Awardco, without a recognition program. See the documentation.
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Awardco account once, then configure and run Recognize Without Recognition Program 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: "awardco-recognize-without-recognition-program",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    awardco: { authProvisionId: "apn_xxxxxxx" },
    recipients: ["Recipients"],
    note: "Note",
  },
})

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.

Recognize Without Recognition Program inputs
Property Type Description
recipients Recipients string[]
Employee IDs, emails, or usernames of people to recognize (at least one)
Required
note Note string
Short note describing why the user(s) are being recognized
Required
tagNames Tag names string[]
Optional tags to attach to the recognition
Optional
giver Giver string
Who is giving the recognition; leave empty to use the company recognition bot
Optional
amount Amount integer
Cash value of the recognition in the company base currency (0 if none)
Optional
isPublic Public boolean
Whether the recognition appears as public in the feed
Optional
emailTemplateName Email template name string
Recognition email template name (optional if send notifications is false)
Optional
sendNotifications Send notifications boolean
Whether to email recipients about the recognition
Optional
budgetName Budget name string
Budget to use when rewarding (see API docs for access rules)
Required

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
awardco-recognize-without-recognition-program
Version
0.0.2
App
Awardco
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes