Hi all,
I'm working on a bi-directional sync between our company's app and SDP Cloud.
Flow:
App → SDP: Using SDP Cloud V3 API (edit-request) to update ticket status.
SDP → App: Using Triggers + Custom Functions to detect status updates and call our public API.
Problem:
Because the sync is two-way, when SDP updates a ticket and triggers the sync, our app updates it back to SDP — causing an infinite loop.
I want a way to send an internal flag/mark when calling edit-request API, such that:
udf_fields.some_flag during request creationIs there any supported way to:
send a temporary flag/metadata with request update API, or
detect if an update was triggered by API (vs UI/user input), or
mark API-originated updates so triggers can conditionally ignore them?
Any workaround/alternative design is welcome.