View as Markdown
AnonyFlow icon

AnonyFlow ACTION

Unprotect Sensitive Data

Decrypts protected data using AnonyFlow decryption service with a unique private key, managed by AnonyFlow. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's AnonyFlow account once, then configure and run Unprotect Sensitive Data 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: "anonyflow-unprotect-sensitive-data",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    anonyflow: { authProvisionId: "apn_xxxxxxx" },
    data: "Data",
    keys: ["Keys"],
  },
})

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.

Unprotect Sensitive Data inputs
Property Type Description
data Data object
Data packet to be Anonymized or Deanonymized. Note that only JSON Object is accepted
Required
keys Keys string[]
Provided keys to be used for Anonymization or Deanonymization
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
anonyflow-unprotect-sensitive-data
Version
0.0.2
App
AnonyFlow
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes