You will be charged % cancellation fee
|
Please Choose |
Full Order Select Items |
Build flows and apps that redact a string containing sensitive content in Microsoft Power Platform and other workflow automation platforms.
The “Redact String” action replaces sensitive text with symbols in a string of text.
Many documents and datasets contain sensitive information, including Social Security numbers, driving license numbers, credit card numbers, and other personally identifying or proprietary information. There are a lot of enterprise solutions for capturing and obscuring such data but sometimes the necessary software is too expensive or cumbersome and things still manage to slip through the cracks.
The “Redact String” action in PowerTools makes it easy to find and replace sensitive information in any string of text. Just supply the source text and PowerTools will do the rest, returning a redacted result that is safe to disseminate. For advanced scenarios, the action also supports Regular Expressions to capture tricky bits of text or those that match a particular pattern (such as “^(?!0{3})(?!6{3})[0-8]\d{2}-(?!0{2})\d{2}-(?!0{4})\d{4}$” for US Social Security numbers or “^4[0-9]{12}(?:[0-9]{3})?$” for a credit card number).
Parameters
Title | Name | Type | Description |
---|---|---|---|
Source | source | string | String containing the values to redact |
Value | value | string | Individual string to redact |
Values | values | array | Collection of strings to redact |
Regular Expression | regex | string | Regular expression for matching strings |
Response
Status | Title | Name | Type | Description |
---|---|---|---|---|
Success | Result | result | string | Redacted text |
Failure | Result | result | string | Error description |
Instructions
Example
Video
Instructions
Example
Coming Soon
Video
Instructions
Example
Video
Instructions
Example
Video
Instructions
Example
Video
Instructions
If your platform is not listed and it supports Open API (Swagger) extensions, import the API Definition document from the Developer Edition product on our Customer Portal at https://portal.apptigent.com/product (look for the Open API link at the top of the PowerTools Developer API definition page). Invoke the desired actions in your app or workflow design tool, supplying values for the listed parameters. Refer to the developer documentation on the Customer Portal for details on input and output formats.
If you are developing a custom app, execute a RESTful POST operation to the /CountCollection endpoint in your application code or use the pre-generated client scaffolding from our Github repo at https://github.com/apptigent/powertools. Be sure to include your API Key (Client ID) in the header using the “X-IBM-Client-Id” key/value pair. The body should be a well-formed JSON object with the parameter label(s) and value(s) in the specified format. Refer to the API documentation at https://portal.apptigent.com for more information.
Example
const request = require('request');
const options = {
method: 'POST',
url: 'https://connect.apptigent.com/api/utilities/RedactString',
headers: {
'X-IBM-Client-Id': 'REPLACE_THIS_KEY',
'content-type': 'application/json',
accept: 'application/json'
},
body: {
value: 'brown',
source: 'The brown cow',
values: ['The', 'brown', 'cow'],
regex: '[A-Za-z]{5}'
},
json: true
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});