GET .../addons/{addonKey}/properties

Returns a list of property keys for the given add-on key.

Parameters:

LocationNameTypeDescription
PathaddonKeystring

The key of the add-on, as defined in its descriptor

Response representations:

200 - application/json
{
    "keys" : [
          {
            "key" : "first_key",
            "self" : "/rest/api/atlassian-connect/${addonKey}/properties/first_key"
          },
          {
            "key" : "another_key",
            "self" : "/rest/api/atlassian-connect/${addonKey}/properties/another_key"
          }
    ]
}
401 - application/json

Request without credentials or with invalid credentials, e.g. by an uninstalled add-on.

404 - application/json

Request issued by a user with insufficient credentials, e.g. for an add-on's data by anyone but the add-on itself, or for a plugin that does not exist.