Anonyflow
anonyflowAnonyFlow offers a simple and powerful service for encryption-based data anonymization and community sharing, enabling GDPR, CCPA, and HIPAA data privacy protection compliance.
Acciones disponibles (4)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Anonymize ValueANONYFLOW_ANONYMIZE_VALUEAcciónTool 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.
ANONYFLOW_ANONYMIZE_VALUEAcciónTool 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.
Parámetros de entrada
datastring[]ObligatorioList of plaintext string values to anonymize.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Deanonymize PacketANONYFLOW_DEANONYMIZE_PACKETAcciónTool to deanonymize a json data packet using your private key. use after receiving an anonymized packet to recover specific fields.
ANONYFLOW_DEANONYMIZE_PACKETAcciónTool to deanonymize a json data packet using your private key. use after receiving an anonymized packet to recover specific fields.
Parámetros de entrada
dataobjectObligatorioJSON object representing the data packet to deanonymize. Values can be string, number, or boolean.
keysstring[]ObligatorioList of keys within the data packet whose values to deanonymize. Empty list deanonymizes entire packet.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Deanonymize ValueANONYFLOW_DEANONYMIZE_VALUEAcciónTool 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>"]))`
ANONYFLOW_DEANONYMIZE_VALUEAcciónTool 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>"]))`
Parámetros de entrada
datastring[]ObligatorioList of anonymized string values to deanonymize.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Test ConnectionANONYFLOW_TEST_CONNECTIONAcciónTool 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())`
ANONYFLOW_TEST_CONNECTIONAcciónTool 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())`
Parámetros de entrada
Sin parámetros.
Parámetros de salida
dataobjectObligatorioData from the action execution
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not