jira.js
    Preparing search index...

    Function bulkSetIssuePropertiesByIssue

    • Sets or updates entity property values on issues. Up to 10 entity properties can be specified for each issue and up to 100 issues included in the request.

      The value of the request body must be a valid, non-empty JSON.

      This operation is:

      • asynchronous. Follow the location link in the response to determine the status of the task and use Get task to obtain subsequent updates.
      • Non-transactional. Updating some entities may fail. Such information will available in the task result.

      Permissions required:

      Parameters

      • client: Client
      • parameters: {
            issues?: {
                issueID?: number;
                properties?: Record<string, any>;
                [key: string]: unknown;
            }[];
        }
        • Optionalissues?: { issueID?: number; properties?: Record<string, any>; [key: string]: unknown }[]

          A list of issue IDs and their respective properties.

      • Optionaloptions: RequestOptions

      Returns Promise<void>