GET v1/QuickBooks/OAuth/Status

Gets the current status of QuickBooks integration with Catalyst

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

QuickBooks status

QuickBooksStatusDTO
NameDescriptionTypeAdditional information
IsSetup

Indicates if QuickBooks has been configured to use with Catalyst.

boolean

None.

IsActive

Indicates if QuickBooks is currently enabled.

boolean

None.

IsError

Indicates if the last OAuth update to QuickBooks was successful.

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSetup": true,
  "IsActive": true,
  "IsError": true
}

application/xml, text/xml

Sample:
<QuickBooksStatusDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Finance.QBIntegration">
  <IsActive>true</IsActive>
  <IsError>true</IsError>
  <IsSetup>true</IsSetup>
</QuickBooksStatusDTO>