Confluence Plugin Development

Hello, I am developing a plugin that is able to select an existing page from a workspace. How do I begin? Would really appreciate any help!

1 Like

:wave: I’d start with the Confluence Plugin Guide.

And then follow-up here with questions on where you get stuck or need more information.

1 Like

Hi! May I ask which module type would be most suitable for this function? Thank you

I think the module type you want to use depends on what you’d like to do with the page once you’ve accessed the page data. Where in Confluence do you expect your app to show users a prompt to select an existing page? Does it happen as part of the Create button prompt? Then you’d use the Blueprint module: Blueprint module
If you expect it to happen in a macro, you’d use the macro module: https://developer.atlassian.com/server/confluence/macro-module/

As for actually accessing the existing page, you can use the REST API found in the SDK here: REST API development

Here is a great getting started page on the SDK: Getting started

1 Like