NAiOS IconNAiOS Logo
Volver al catálogo

Anonyflow

anonyflow

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

Acciones
4
Triggers
0
Autenticación
OAuth gestionado
No
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

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ón

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.

Parámetros de entrada

  • datastring[]Obligatorio

    List of plaintext string values to anonymize.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Deanonymize PacketANONYFLOW_DEANONYMIZE_PACKETAcción

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

Parámetros de entrada

  • dataobjectObligatorio

    JSON object representing the data packet to deanonymize. Values can be string, number, or boolean.

  • keysstring[]Obligatorio

    List of keys within the data packet whose values to deanonymize. Empty list deanonymizes entire packet.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Deanonymize ValueANONYFLOW_DEANONYMIZE_VALUEAcción

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>"]))`

Parámetros de entrada

  • datastring[]Obligatorio

    List of anonymized string values to deanonymize.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Test ConnectionANONYFLOW_TEST_CONNECTIONAcción

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())`

Parámetros de entrada

Sin parámetros.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not