Get link to addon configuration page

Hi,
I’m trying to get a link to the configuration page of our addon in the customers instance. We are using atlassian-connect-express.
Basically, what I want to do is to add a postInstallPage , and from there link to the configuration page. How can I get the link to the configuration page?

1 Like

After some searching I found: https://developer.atlassian.com/cloud/confluence/modules/admin-page/ with the following information:

{
    "key": "my-addon",
    "modules": {
        "configurePage": {
            "key": "configure-me",
        }
    }
}

Will have a configuration page module with a URL of /plugins/servlet/ac/my-addon/configure-me.

That makes it possible to construct the configuration URL as:

<a href="{{hostBaseUrl}}/plugins/servlet/ac/{{ addonKey }}/configure-me">Configuration</a>