Is it possible to update an Assets Object using HAPI without trigger Asset Listeners?
setEventDispatchOption(EventDispatchOption.DO_NOT_DISPATCH)
This works on a HAPI issue update, but not a HAPI Assets Update?
Have you tried using the approach below with ScriptRunner's HAPI, i.e.:-
issue.update {
//Field to update
}
for example:-
issue.update {
setDescription('Testing 123')
setCustomFieldValue('Sample Text', 'Abc 123')
}
Using the approach above, you do not need to trigger the Event Dispatcher.
I hope this helps to answer your question. :)
Thank you and Kind regards,
Ram
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.