bulkSetIssuePropertiesByIssue method

Future<void> bulkSetIssuePropertiesByIssue({
  1. required MultiIssueEntityProperties body,
})

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:

Implementation

Future<void> bulkSetIssuePropertiesByIssue(
    {required MultiIssueEntityProperties body}) async {
  await _client.send(
    'post',
    'rest/api/3/issue/properties/multi',
    body: body.toJson(),
  );
}