v2
latestOpenAPI 3.0.02026-08-013312111.4 MBList changes on an issue
Returns the list of all changes that have been made to the specified issue. Changes are returned in chronological order with the oldest change first.
Each time an issue is edited in the UI or through the API, an immutable change record is created under the /issues/123/changes endpoint. It also has a comment associated with the change.
Note that this operation is changing significantly, due to privacy changes. See the announcement for details.
Changes support filtering and sorting that can be used to search for specific changes. For instance, to see when an issue transitioned to "resolved":
$ curl -s https://api.bitbucket.org/2.0/repositories/site/master/issues/1/changes \
-G --data-urlencode='q=changes.state.new = "resolved"'
This resource is only available on repositories that have the issue tracker enabled.
N.B.
The changes.assignee and changes.assignee_account_id fields are not a user object. Instead, they contain the raw username and account_id of the user. This is to protect the integrity of the audit log even after a user account gets deleted.
The changes.assignee field is deprecated will disappear in the future. Use changes.assignee_account_id instead.
Query parameters
Query string to narrow down the response. See filtering and sorting for details.
Name of a response property to sort results. See filtering and sorting for details.
Response
Returns all the issue changes that were made on the specified issue.