We have a simple script that updates the Organizations field using a WEB HTTP POST to the API from ScriptRunner.
Looking for a way to prevent this update from firing Listeners.
Can do this when updating custom fields, but the Organizations field does not seem to be updateable the same way.
def PayLoad = ["fields": ["customfield_10110": [OrganizationID]]]
OrganizationsUpdate.put(
path: '/rest/api/2/issue/' + issue.key,
contentType: ContentType.JSON,
body: PayLoad
)