To successfully configure and manage integrations, it is important to understand the core terminology used in Exalate. This guide explains the key concepts used when setting up and operating synchronization between systems.
Core Concepts
The following terms are fundamental concepts used across Exalate integrations.
System
A System is a task management or service management platform connected to Exalate.
Examples include Jira, Azure DevOps, ServiceNow, Salesforce, GitHub, and Zendesk. Each system participating in an integration processes synchronization independently.
Item
An Item is any record you want to synchronize between systems.
Depending on the platform, an item can represent:
-
Issues in Jira
-
Work items in Azure DevOps
-
Incidents in ServiceNow
-
Cases in Salesforce
-
Tickets in Zendesk
Connection
A Connection defines the synchronization relationship between two systems.
A connection determines how items are synchronized and contains the configuration responsible for handling the synchronization logic between both sides.
Multiple connections can exist between the same systems, for example to synchronize different projects or workflows.
Connection Status
Active The connection is running normally and processing sync transactions.
Deactivated The connection has been manually paused. No sync transactions are processed until it is reactivated.
Error The connection has encountered a functional issue preventing normal sync processing.
Connection Status
-
Pending
The connection is pending, waiting for acceptance from the other side. -
Active
A connection has been established, and synchronization messages start to go out. You can now synchronize issues. -
Deactivated
Synchronization is paused, but changes are queued for a later update. Once you activate the connection, all changes are applied.

Connector
A Connector is the component that allows Exalate to communicate with a specific platform. It exposes the platform’s APIs and data structures so that they can be used during synchronization.
Each supported platform has its own connector.
Replica
A replica is a copy of the information that is being transferred to the destination side. Exalate uses replicas to extract specific data and then send it over. You can use the replica in the Outgoing rules to specify which data should be sent. On the destination side, the replica object is used to represent the remote issue. It contains only the fields provided through the data filter on the source side.
You can view the replica details in the sync monitor.
The replica looks something like this:

In this way, you can see what information is being passed over from the local instance. The remote replica has a similar structure.
Note: The hubIssue represents the information that is passed and how you can access it. Whereas the replica is more than the hubIssue section. The replica is the entire payload to be transferred between platforms.
A pair of items that are related to each other through a synchronization relation. Any modification is synchronized towards the other item using the specifications of the relation.
Twin
A Twin is a pair of entities that are related to each other through a synchronization relation. Any modification is synchronized towards the other entity using the specifications of the relation.
Synchronization Concepts
These terms describe how synchronization logic works.
Sync Rules
Sync Rules define how data is exchanged between systems.
They control:
-
what data is shared
-
how fields are mapped
-
how values are transformed
Sync Rules typically contain outgoing and incoming logic.
Outgoing Script
The Outgoing Script runs on the source system when an item changes.
It selects which fields are written to the replica and sent to the destination system.
Example:
replica.priority = issue.priority
Incoming Script
The Incoming Script runs on the destination system when a replica is received.
It reads values from the replica and maps them to fields in the local system.
Example:
issue.priority = nodeHelper.getPriority(replica.priority?.name)
Trigger
A Trigger defines the conditions under which items are automatically synchronized.
Triggers typically use queries or filters to detect items that should be brought under synchronization.
Sync Queue
The Sync Queue contains synchronization transactions waiting to be processed.
When an item changes, Exalate creates a synchronization event that is placed in the queue until it is processed.
Sync Status
The Sync Status indicates the current state of an item's synchronization.
Common statuses include:
-
syncing
-
error
-
unlinked
Synchronization Operations
These actions allow administrators to control synchronization.
Sync
Sync is the operation that brings an item under synchronization.
When syncing begins, a corresponding item is usually created on the destination system.
Bulk Connect
This operation allows you to connect and sync entities from 2 different platforms in bulk.
Unexalate
The Unexalate operation is used to stop the entity synchronization. It is avaialble as an option in the Sync panel on certain platforms and on the Entity Sync status tab in the Exalate Admin console.
Bulk Exalate
Bulk Exalate allows you to sync existing entities between two platforms that satisfy conditions you have set in Triggers in bulk.
Clean-up
This operation stops the entity synchronization.
Unlink
The Unlink operation stops synchronization between two items.
After unlinking, the items remain in their respective systems but no further updates are synchronized.
Force Unlink
Force Unlink breaks the synchronization relationship between two items and clears any pending synchronization transactions.
Bulk Sync
Bulk Sync allows multiple existing items to be synchronized at once, usually based on trigger conditions.
Relink
Relink allows previously existing items in two systems to be linked together and synchronized.
New Exalate Concepts
The following terms are used in the newer Exalate integration management experience.
Workspace
A Workspace is a top-level organizational environment used to manage integrations, connections, and access across an organization.
Integration
An Integration connects two systems and groups the connections between them.
A single integration can contain multiple connections for different synchronization configurations.
Subscription
A Subscription is the billing plan associated with an integration. It defines the item capacity and available features for the integration.
Version
A Version is a saved snapshot of a connection configuration.
Versions allow administrators to track configuration changes and restore earlier configurations if necessary.
Draft Version
A Draft Version is a configuration snapshot that can be edited but is not yet active.
Drafts allow teams to prepare and validate configuration changes before applying them to live synchronization.
Active Version
The Active Version is the configuration currently used by a connection in production.
Only one version can be active at a time.
Archived Version
An Archived Version is a historical snapshot of a configuration kept for reference or rollback.
Archived versions are read-only.
Test Run
A Test Run simulates synchronization without affecting live data.
It allows administrators to preview how items would synchronize using a draft configuration.
Item Sync Monitor
The Item Sync Monitor is the interface used to inspect synchronization activity for items.
Administrators can use it to:
-
search synchronized items
-
inspect Sync Pairs
-
review sync events
-
trigger manual operations
-
troubleshoot synchronization errors
Connection Setup
Instance
An Instance is a task management system that contains information you want to synchronize. Examples of instances are Jira Cloud, Salesforce, Zendesk, etc.
You can integrate with multiple instances using different connections. You can also synchronize between local projects within the same instance.
Note: Local synchronization is not supported in all task management systems.
Whenever you set up a connection between two different task management systems, one of them is a local instance, and the other one is a remote instance.
For example, if you set up integration between Jira Cloud and Zendesk, you can initiate a connection from either side.
If you choose to set up a connection on the Jira Cloud side, Jira Cloud becomes your local or source instance, and Zendesk the remote or destination instance.
This concept is only applicable to Exalate Classic.
Invitation Code
To sync information between two task management systems, you need to set up a connection. When doing this, Exalate generates an invitation code. This works as a shared secret that helps authenticate both source and destination instances. Invitation codes store encrypted connection information, such as:
- Shared secret
- Connection type
- Connection name
- Connection initiator information
- Exalate app version
- Task management system and version
- Task management system URL
- Exalate Node URL
- Task management system UID - Unique instance identifier
An invitation code is used to set up a connection with the destination instance if an initiator does not have access to both sides of the connection. The code only applies to the instance you are inviting to synchronize.
Note: An invitation code is required only in Script mode configurations.