getAddonProperties method

Future<PropertyKeys> getAddonProperties(
  1. String addonKey
)

Gets all the properties of an app.

Permissions required: Only a Connect app whose key matches addonKey can make this request. Additionally, Forge apps published on the Marketplace can access properties of Connect apps they were migrated from.

Implementation

Future<PropertyKeys> getAddonProperties(String addonKey) async {
  return PropertyKeys.fromJson(await _client.send(
    'get',
    'rest/atlassian-connect/1/addons/{addonKey}/properties',
    pathParameters: {
      'addonKey': addonKey,
    },
  ));
}