Anonyflow

Learn how to use Anonyflow with Composio

Overview

Enum

ANONYFLOW

Description

AnonyFlow offers a simple and powerful service for encryption-based data anonymization and community sharing, enabling GDPR, CCPA, and HIPAA data privacy protection compliance.

Authentication Details

api_key
stringRequired

Actions

Tool to anonymize a string or array of string values. use when you need to conceal sensitive text before storage or transmission. example: `anonymizevalue().execute(anonymizevaluerequest(data=['secret']))` limitations: only supports list of strings, not nested structures.

Action Parameters

data
arrayRequired

Action Response

data
object
error
string
successful
boolean
Tool to deanonymize a json data packet using your private key. use after receiving an anonymized packet to recover specific fields.

Action Parameters

data
objectRequired
keys
arrayRequired

Action Response

data
object
error
string
successful
boolean
Tool to deanonymize one or more anonymized string values. use when you need to recover the original plaintext values after encryption-based anonymization. example: `deanonymizevalue().execute(deanonymizevaluerequest(data=["<anonymized string>"]))`

Action Parameters

data
arrayRequired

Action Response

data
object
error
string
successful
boolean
Tool to test the connection to the anonyflow api. use when verifying that the anonyflow service is reachable and operational before performing anonymization tasks. example: `testconnection().execute(testconnectionrequest())`

Action Parameters

Action Response

data
object
error
string
successful
boolean