jira.js
    Preparing search index...

    Function updateEntityPropertiesValue

    • Updates the values of multiple entity properties for an object, up to 50 updates per request. This operation is for use by Connect apps during app migration.

      Parameters

      • client: Client
      • parameters: {
            "Atlassian-Transfer-Id": string;
            body: {
                entityId: number;
                key: string;
                value: string;
                [key: string]: unknown;
            }[];
            entityType: | string & {}
            | "IssueProperty"
            | "CommentProperty"
            | "DashboardItemProperty"
            | "IssueTypeProperty"
            | "ProjectProperty"
            | "UserProperty"
            | "WorklogProperty"
            | "BoardProperty"
            | "SprintProperty";
        }
        • Atlassian-Transfer-Id: string

          The app migration transfer ID.

        • body: { entityId: number; key: string; value: string; [key: string]: unknown }[]
        • entityType:
              | string & {}
              | "IssueProperty"
              | "CommentProperty"
              | "DashboardItemProperty"
              | "IssueTypeProperty"
              | "ProjectProperty"
              | "UserProperty"
              | "WorklogProperty"
              | "BoardProperty"
              | "SprintProperty"

          The type indicating the object that contains the entity properties.

      • Optionaloptions: RequestOptions

      Returns Promise<void>