This article describes how to synchronize status between Xurrent and other systems.
Status in Xurrent: In Xurrent the status provides visibility into the progress of a request, helping users and support staff track its lifecycle
Request status synchronization
Outgoing sync (Xurrent → Remote system)
To send request status from Xurrent to the remote system:
replica.status = entity.statusIncoming sync (Remote system → Xurrent)
To receive request status from the remote system and update Xurrent requests:
// Map remote status to xurrent request statusdef statusMap = [ "Done": "Completed", "In Progress": "In Progress", "To Do": "Being Created" ] entity.status = nodeHelper.getStatus(statusMap[replica.status.name])
More information
Have more questions? Ask the community