Hi,
My script generates a csv file in format say:
project1,owner1,details1
project2,owner2,details2
How do I update a confluence page using rest api's commands with this data? Preferably, I would like to use a bob swift cvs table on my confluence page and update the cvs data using the rest api command.
Suggestions please.
Thanks
Unless you want to do the programming yourself, it would be much easier to use the Confluence Command Line Interface (CLI) to upload the file in wiki format. Especially easy if your CSV is in a file:
--action storePage --space XXX --title "My page" --content "{csv}" --file myFile.csv --content2 "{csv}"
The file content is included after content and before content2.
An alternative is to use addAttachment to add the file as an attachment and store the page with the wiki markup for the csv macro that accesses the csv from an attachment.
Make sure your script is producing valid CSV as defined in the reference on CSV Macro.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.