correlationQuery , correlationScript Returns JSON object | - source: Represents the source object.
- linkQualifier: The link qualifier associated with the current sync.
- context: Information related to the current request, such as source and target.
|
linkQualifiers Returns JSON object | - mapping: The name of the current mapping.
- object: The value of the source object. During a DELETE event, that source object may not exist, and may be null.
- oldValue: The former value of the deleted source object, if any. If the source object is new, oldValue will be null. When there are deleted objects, oldValue is populated only if the source is a managed object.
- returnAll (boolean): Link qualifier scripts must return every valid link qualifier when returnAll is true, independent of the source object. If returnAll is true, the script must not attempt to use the object variable, because it will be null. It's best practice to configure scripts to start with a check for the value of returnAll.
- context: Information related to the current request, such as source and target.
|
onCreate Returns JSON object | - source: Represents the source object.
- target: Represents the target object.
- situation: The situation associated with the current sync operation.
- linkQualifier: The link qualifier associated with the current sync operation.
- context: Information related to the current sync operation.
- sourceId: The object ID for the source object.
- targetId: The object ID for the target object.
- mappingConfig: A configuration object representing the mapping being processed.
|
onDelete , onUpdate Returns JSON object | - source: Represents the source object.
- target: Represents the target object.
- oldTarget: Represents the target object prior to the DELETE or UPDATE action.
- situation: The situation associated with the current sync operation.
- linkQualifier: The link qualifier associated with the current sync.
- context: Information related to the current sync operation.
- sourceId: The object ID for the source object.
- targetId: The object ID for the target object.
- mappingConfig: A configuration object representing the mapping being processed.
|
onLink , onUnlink Returns JSON object | - source: Represents the source object.
- target: Represents the target object.
- linkQualifier: The link qualifier associated with the current sync operation.
- context: Information related to the current sync operation.
- sourceId: The object ID for the source object.
- targetId: The object ID for the target object.
- mappingConfig: A configuration object representing the mapping being processed.
|
result Returns JSON object of reconciliation results | - source: Provides statistics about the source phase of the reconciliation.
- target: Provides statistics about the target phase of the reconciliation.
- context: Information related to the current operation, such as source and target.
- global: Provides statistics about the entire reconciliation operation.
|
validSource Returns boolean | - source: Represents the source object.
- linkQualifier: The link qualifier associated with the current sync operation.
- context: Information related to the current sync operation.
|
validTarget Returns boolean | - target: Represents the target object.
- linkQualifier: The link qualifier associated with the current sync operation.
- context: Information related to the current sync operation.
|