The Parse CSV activity converts comma-separated values (CSV) text into an array of objects.
You may need to turn CSV into an array of objects that can be used in your workflow. You could use the Get Text From File activity to read the text content of a CSV file selected by the File Picker form element then parse the text to use the data in your workflow.
CSV |
Required Type: String The CSV text to parse. |
Delimiter |
Type: String The delimiter used to separate fields. The default is ",". |
Quote Character |
Type: String The character used to represent quotes. The default is double-quote ("). |
Header Present |
Type: Boolean True if the first row of the data is to be treated as a list of field names, false otherwise. In the absence of field names, the output objects use numeric values for the field names. The default is true. |
Parse Numbers |
Type: Boolean True if strings that appear to be numeric should be converted to numbers. The default is true. |
Parse Booleans |
Type: Boolean True if values of "true" or "false" (case-insensitive) should be converted to booleans. The default is true. |
result |
Type: any[] An array of objects corresponding to the given CSV text. |
For information about the ID, Display Name, and Description properties, see Properties Common to all Activities.
This activity works when the device has intermittent connectivity to the network.