I have a similar but different and (shocking) more complex request. I have a long flow that pulls in JSON Objects and places them into an array, where I will eventually put them into a CSV file to send. However, late in the process I need to update an element of the array:
[
{
"Employee Id": "E501815",
"First Name": "John",
"Last Name": "Brown",
"Email": "John.Brown@MyCo.com",
"Secondary Email": "",
"Username": "",
"Password": "",
"Hire Date": "[Need to insert a date variable value here]",
"Birth Date": "",
"Role": "",
"Country Code": "US",
"Supervisor Id": "E501090",
"Group Name": "",
"Language": "",
"#Cost Center": "",
"#Department": "Operations",
"#City": "",
"#Supervisor Name": "Ricky Bobby",
"#Job Title": "Office Manager",
"#Management Level": "",
"Supervisor First Name": "",
"Supervisor Last Name": "",
"Ship to Full Name": "",
"Ship to Job Title": "",
"Ship to Address Line 1": "",
"Ship to Address Line 2": "",
"Ship to City": "",
"Ship to State/Province": "",
"Ship to Country": "",
"Ship to Zip/Postal Code": "",
"Printed Language": ""
}
]