POST
/
v1
/
businesses
/
{businessId}
/
quickbooks
/
sync-from
Sync from Quickbooks
curl --request POST \
  --url https://sandbox.layerfi.com/v1/businesses/{businessId}/quickbooks/sync-from \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "quickbooks_realm_ids": [
    "<string>"
  ]
}'
{
  "type": "{}"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

businessId
string
required

The UUID of the business to sync Quickbooks data for.

Body

application/json
quickbooks_realm_ids
string[]

List of Quickbooks realm IDs to sync from. If not provided, all connected realms will be synced.

Response

type
string

Resource type. Value will be 'com.layerfi.controllers.EmptyResponse'.

Example:

"{}"