Hi All, I’m having an issue where I’m uploading a CSV (using 1t-CSV plugin) and sending the data to a recursive workflow to create a list of products, but somewhere in the process it’s skipping empty numerical cells. See below, column AB, what was meant to be uploaded, column AC, what was uploaded.
The data flow
-
Upload CSV to 1t-csv plugin and plugin sends JSON to API Connector. @eli don’t think the issue is here but you can confirm
-
Data sent from API connector to workflow
csv_upload_product_router -
API workflow ‘
csv_upload_product_router’splits data into it’s distinct fields and sends to ‘csv_upload_product’ -
‘
csv_upload_product’ creates ‘product’ which runs a recursive workflow
Below is what happens when I upload some sample data - focus on the ‘Dimensions - W’ cell.
1) Upload CSV to 1t-csv plugin and plugin sends JSON to API Connector
You can see the JSON data the plugin creates to send to the API connector here:
“Dimensions - W”: “90.5”
“Dimensions - W”: “”
“Dimensions - W”: “20”
2) Data sent from API connector to workflow csv_upload_product_router
“Dimensions - W”: “90.5”
“Dimensions - W”: “”
“Dimensions - W”: “20”
3) API workflow ‘csv_upload_product_router’splits data into it’s distinct fields and sends to ‘csv_upload_product’
“Dimensions - W”: “90.5”
“Dimensions - W”: “”
“Dimensions - W”: “20”
4) ‘csv_upload_product’ creates ‘product’ which runs a recursive workflow
The empty cell is missing here.
When it goes to run the recursive workflow, it should be Dimensions -W: [90.5,20] but is instead Dimensions -W: [90.5,20]















