bulkSetIssuesPropertiesList method

Future<void> bulkSetIssuesPropertiesList({
  1. required IssueEntityProperties body,
})

Sets or updates a list of entity property values on issues. A list of up to 10 entity properties can be specified along with up to 10,000 issues on which to set or update that list of entity properties.

The value of the request body must be a valid, non-empty JSON. The maximum length of single issue property value is 32768 characters. This operation can be accessed anonymously.

This operation is:

  • transactional, either all properties are updated in all eligible issues or, when errors occur, no properties are updated.
  • asynchronous. Follow the location link in the response to determine the status of the task and use Get task to obtain subsequent updates.

Permissions required:

Implementation

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