This question is in reference to Atlassian Documentation: Scheduled Jobs
I'm wondering if there is a way to use Scheduled Jobs to automatically create a daily-standup notes page for folks to fill in. If not, is there an alternative to buying a Command Line Interface plugin and creating a cron to do the job?
If you want to save the license fee of the CLI add-on, you could very easily implement this:
Use a single call to the REST API to create a page (see the doc page):
curl -u admin:admin -X POST -H 'Content-Type: application/json' -d'{"type":"page","title":"new page","space":{"key":"TST"},"body":{"storage":{"value":"<p>This is a new page</p>","representation":"storage"}}}' http://localhost:8080/confluence/rest/api/content/ | python -mjson.tool
Should be dead simple.
Thank you - this sounds very hopeful! Do you know of a way to reference the current date in the page title? So that it wouldn't overwrite the previous one each time it is created? Also do you think there would be a way to create a new page with content from an existing template using this method?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Morgan,
You can develop your own confluence plugin that implements a job module (https://developer.atlassian.com/confdev/confluence-plugin-guide/confluence-plugin-module-types/job-module).
At this time there's no plugin that provides this feature.
Regards,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online 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.