Jobs json
The jobs.json file defines the set of connector tasks to run during integration.
From Inistate to Accounting software
Sample Code [Accounting 1]
Each job entry specifies:
name: Logical name of the task.
enabled:
true
/false
to turn this job on or off.server: Connection parameters (host, database, credentials).
debug: Enable detailed logging.
hook / errorHook / callBackHook : Web hook URLs for sync, error handle and callbacks.
lastSync: Timestamp of the last run.
interval: Polling interval in minutes.
Sample Code [Accounting 2]
(Work In Progress)
From Accounting Software to Inistate
Sample Code [Accounting 1]
(Work In Progress)
Sample Code [Accounting 2]
The SQLSync
section entry specifies:
name: Logical identifier for the sync job.
enabled:
true
/false
to turn this job on or off.connectionString: A valid ADO-style string.
hook: The callback URL to receive each batch of synced rows.
sql: Your SQL script to select changed records.
lastSync: Timestamp of the last run.
In order to sync, you must include LastModified
in sql
Last updated