General
Server Side SDKs
Core API
- Companies
- Invite Links
- Sync
- Passthrough
- Real Time
- Webhooks
Unified API
- Accounting
- Payments
- Ecommerce
- CRM
Sync
Get Sync
Retrieve a single sync from the database.
GET
/
core
/
syncs
/
{sync_id}
curl --request GET \
--url https://api.rootfi.dev/v3/core/syncs/{sync_id} \
--header 'api_key: <api-key>'
{
"data": {
"rootfi_id": 1,
"rootfi_company_id": 8422,
"rootfi_updated_at": "2024-06-21T08:07:05.750Z",
"rootfi_created_at": "2024-06-21T08:07:05.750Z",
"start_time": "2024-06-21T08:07:05.000Z",
"end_time": "2024-06-21T08:07:40.382Z",
"integration_type": "ZOHO_BOOKS",
"full_sync": true,
"sync_type": "AUTO_SYNC",
"config_mode": "READ",
"sync_data_models": [
"CUSTOM_ACCOUNT_TRANSACTIONS"
],
"sync_id": "hjmm4d2HDHB60a2",
"total_count": 3,
"success_count": 3,
"failed_count": 0,
"running_count": 0,
"pending_count": 0,
"status": "SUCCESS"
}
}
Authorizations
Path Parameters
The ID of the sync to retrieve
Response
200
application/json
The data of the sync endpoint
The data of the invite link endpoint
The ID of the sync
Example:
1
The created time of the sync
Example:
"2024-06-21T08:07:05.750Z"
The updated time of the sync
Example:
"2024-06-21T08:07:05.750Z"
The ID of the company
Example:
8422
The start time of the sync
Example:
"2024-06-21T08:07:05.000Z"
The end time of the sync
Example:
"2024-06-21T08:07:40.382Z"
The type of integration
Available options:
ZOHO_BOOKS
, QUICKBOOKS_SANDBOX
, QUICKBOOKS
, XERO
, TALLY
, ROOTFI_SANDBOX
, SAGE_CLOUD_ACCOUNTING
, MS_DYNAMICS_365
, SAGE_ZA_CLOUD_ACCOUNTING
, MYOB_BUSINESS
, NETSUITE
, WAVE
, ODOO_ACCOUNTING
, WAFEQ
, MEKARI_JURNAL
, BUSY
, QOYOD
, STRIPE
, RAZORPAY
, PAYPAL
, SHOPIFY
, BIG_COMMERCE
, WOO_COMMERCE
, HUBSPOT
, SALESFORCE
, PIPEDRIVE
, ZOHO_CRM
Whether the sync was a full sync
Example:
true
The type of sync.
Available options:
MANUAL
, AUTO_SYNC
The config mode of the sync.
Available options:
CREATE
, READ
, UPDATE
, DELETE
, DOWNLOAD
, CUSTOM
The sync data models of the sync.
Example:
["CUSTOM_ACCOUNT_TRANSACTIONS"]
The ID of the sync
Example:
"hjmm4d2HDHB60a2"
The total count of the sync
Example:
3
The success count of the sync
Example:
3
The failed count of the sync
Example:
0
The running count of the sync
Example:
0
The pending count of the sync
Example:
0
The status of the sync
Available options:
CREATED
, RUNNING
, SUCCESS
, FAILED
curl --request GET \
--url https://api.rootfi.dev/v3/core/syncs/{sync_id} \
--header 'api_key: <api-key>'
{
"data": {
"rootfi_id": 1,
"rootfi_company_id": 8422,
"rootfi_updated_at": "2024-06-21T08:07:05.750Z",
"rootfi_created_at": "2024-06-21T08:07:05.750Z",
"start_time": "2024-06-21T08:07:05.000Z",
"end_time": "2024-06-21T08:07:40.382Z",
"integration_type": "ZOHO_BOOKS",
"full_sync": true,
"sync_type": "AUTO_SYNC",
"config_mode": "READ",
"sync_data_models": [
"CUSTOM_ACCOUNT_TRANSACTIONS"
],
"sync_id": "hjmm4d2HDHB60a2",
"total_count": 3,
"success_count": 3,
"failed_count": 0,
"running_count": 0,
"pending_count": 0,
"status": "SUCCESS"
}
}