jira.js
    Preparing search index...

    Function putAddonProperty

    • Sets the value of an app's property. Use this resource to store custom data for your app.

      The value of the request body must be a valid, non-empty JSON blob. The maximum length is 32768 characters.

      Permissions required: Only a Connect app whose key matches addonKey can make this request. Additionally, Forge apps can access Connect app properties (stored against the same app.connect.key).

      Parameters

      • client: Client
      • parameters: { addonKey: string; body: Record<string, any>; propertyKey: string }
        • addonKey: string

          The key of the app, as defined in its descriptor.

        • body: Record<string, any>
        • propertyKey: string

          The key of the property.

      • Optionaloptions: RequestOptions

      Returns Promise<{ message: string; statusCode: number; [key: string]: unknown }>