-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
Description: Components action logs contains sensitive data
STR:
- Create new flow with
simple-triggeras step When result of JSONata evaluation is empty (undefined) - empty message is sent #1. - Add sample manually:
{ "Account": { "Account Name": "Firefly", "Order": [ { "OrderID": "order103", "Product": [ { "Product Name": "Bowler Hat", "ProductID": 858383, "SKU": "0406654608", "Description": { "Colour": "Purple", "Width": 300, "Height": 200, "Depth": 210, "Weight": 0.75 }, "Price": 34.45, "Quantity": 2 }, { "Product Name": "Trilby hat", "ProductID": 858236, "SKU": "0406634348", "Description": { "Colour": "Orange", "Width": 300, "Height": 200, "Depth": 210, "Weight": 0.6 }, "Price": 21.67, "Quantity": 1 } ] } ] } } - Add new step with
jsonata-transform-component - Input:
{ "account": Account."Account Name", "products": Account.Order.Product.({ "name": $."Product Name", "revenue": (Price * Quantity) }), "orderIDs": Account.Order[].(OrderID) } - See sensitive data in logs:

AR: Component logs are contains sensitive data
ER: Component logs does not contain any sensitive data.