GET v1/QuickBooks/SyncStatus

Retrieves the latest sync status event for QuickBooks

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

QuickBooks sync status

QuickBooksSyncStatusDTO
NameDescriptionTypeAdditional information
ID

The ID of the sync status in the database.

globally unique identifier

None.

Success

Indicates if the sync was successful.

boolean

None.

StatusMessage

The message returned from the sync.

string

None.

TriggeredEntityId

The ID of the that triggered the sync.

integer

None.

SyncStarted

The date/time the sync started.

date

None.

SyncFinished

The date/time the sync finished.

date

None.

PendingTransactionsToSync

Count of transactions that are currently pending for entities that have previously been synced.

integer

None.

SyncEvents

Count of transactions synced by this sync request.

integer

None.

ExternalEntities

Count of entities synced by this sync request.

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": "8397c839-be10-4c2d-b521-34a1c39a4f0e",
  "Success": true,
  "StatusMessage": "sample string 3",
  "TriggeredEntityId": 4,
  "SyncStarted": "2026-08-14T15:14:52.9266329+00:00",
  "SyncFinished": "2026-08-14T15:14:52.9266329+00:00",
  "PendingTransactionsToSync": 6,
  "SyncEvents": 7,
  "ExternalEntities": 8
}

application/xml, text/xml

Sample:
<QuickBooksSyncStatusDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Finance.QBIntegration">
  <ExternalEntities>8</ExternalEntities>
  <ID>8397c839-be10-4c2d-b521-34a1c39a4f0e</ID>
  <PendingTransactionsToSync>6</PendingTransactionsToSync>
  <StatusMessage>sample string 3</StatusMessage>
  <Success>true</Success>
  <SyncEvents>7</SyncEvents>
  <SyncFinished>2026-08-14T15:14:52.9266329+00:00</SyncFinished>
  <SyncStarted>2026-08-14T15:14:52.9266329+00:00</SyncStarted>
  <TriggeredEntityId>4</TriggeredEntityId>
</QuickBooksSyncStatusDTO>