Note: You’ll need to create a new QuickBooks app if you don’t already have one.
You can find your QuickBooks app credentials by visiting your QuickBooks developer portal.You’ll need the following information to set up your QuickBooks App with Paragon Connect:
Under Integrations > Connected Integrations > QuickBooks > App Configuration > Configure, fill out your credentials from the end of Step 1 in their respective sections:
Client ID: Found under Keys & OAuth > Keys > Client ID on your QuickBooks App page.
Client Secret: Found under Keys & OAuth > Keys > Client Secret on your QuickBooks App page.
Permissions: Select the scopes you’ve requested for your application. For a list of recommended scopes, please view this integration within your Paragon dashboard. View dashboard.
Press the purple “Save Changes” button to save your credentials.
Note: Leaving the Client ID and Client Secret blank will use Paragon development keys.
Once your users have connected their QuickBooks account, you can use the Paragon SDK to access the QuickBooks API on behalf of connected users.See the QuickBooks REST API documentation for their full API reference.Any QuickBooks API endpoints can be accessed with the Paragon SDK as shown in this example.
Copy
Ask AI
// You can find your project ID in the Overview tab of any Integration// Authenticate the userparagon.authenticate(<ProjectId>, <UserToken>);// Create Customerawait paragon.request("quickbooks", "/customer", { method: "POST", body: { "FullyQualifiedName": "King Groceries", "PrimaryEmailAddr": { "Address": "[email protected]" }, "DisplayName": "King's Groceries", "Suffix": "Jr", "Title": "Mr", "MiddleName": "B", "Notes": "Here are other details.", "FamilyName": "King", "PrimaryPhone": { "FreeFormNumber": "(555) 555-5555" }, "CompanyName": "King Groceries", "BillAddr": { "CountrySubDivisionCode": "CA", "City": "Mountain View", "PostalCode": "94042", "Line1": "123 Main Street", "Country": "USA" }, "GivenName": "James" }});// Query Customersawait paragon.request("quickbooks", "/query?query=select * from Customer", { method: "GET"});
Webhook triggers can be used to run workflows based on events in your users’ QuickBooks account. For example, you might want to trigger a workflow whenever new invoices are created QuickBooks to sync your users’ QuickBooks invoices to your application in real-time.
You can find the full list of Webhook Triggers for QuickBooks below: