Get QuickBooks export status for the organization
GET
/api/integrations/qbo/export/status
const url = 'https://api.getvespy.com/api/integrations/qbo/export/status';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.getvespy.com/api/integrations/qbo/export/status \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Default Response
Media typeapplication/json
object
connected
required
boolean
connection
required
null | object
exportFromDate
required
null | string
exportToDate
required
null | string
lastRun
required
null | object
recordCounts
required
object
conflict
required
integer
failed
required
integer
pending
required
integer
skipped
required
integer
synced
required
integer
requiredMappings
required
Array<object>
object
code
required
string
mapped
required
boolean
name
required
string
type
required
string
vespyId
required
string format: uuid
Example
{ "requiredMappings": [ { "type": "asset" } ]}Default Response
Media typeapplication/json
object
code
string
errors
Array<object>
object
code
required
string
message
required
string
path
required
string
message
required
string
Examplegenerated
{ "code": "example", "errors": [ { "code": "example", "message": "example", "path": "example" } ], "message": "example"}Default Response
Media typeapplication/json
object
code
string
errors
Array<object>
object
code
required
string
message
required
string
path
required
string
message
required
string
Examplegenerated
{ "code": "example", "errors": [ { "code": "example", "message": "example", "path": "example" } ], "message": "example"}