I am trying to figure out how i can get a CSV file updated. I have an http client step in my workflow to get some information and i would like to be able to put that info that was returned in the step, into a csv. I haven’t been able to find out were to do that within clm workflow.
Page 1 / 1
You can use the Write Text Document or Append Text Document step to create/update a document with a “.csv” extension. You would want to construct the row to be added in the csv by concatenating variables with double quotes and commas as delimiters as part of building a string to write the new row. I usually add a new row at the end of the string if we are going to write multiple rows.
Here is a quick example using the Expression Builder…
“\” + GetVariableValue("Column1") + “\”,\”” + GetVariableValue("Column2") + "\”\r\n"
Reply
Sign up
Already have an account? Login
You can login or register as either a Docusign customer or developer. If you don’t already have a Docusign customer or developer account, you can create one for free when registering.
Customer Login/Registration Developer Login/RegistrationDocusign Community
You can login or register as either a Docusign customer or developer. If you don’t already have a Docusign customer or developer account, you can create one for free when registering.
Customer Login/Registration Developer Login/RegistrationEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.