Skip to content

Commit

Permalink
Create intuit.md (#635)
Browse files Browse the repository at this point in the history
* Create intuit.md

* Update intuit.md

* Update intuit.md

---------

Co-authored-by: Aleksa Krolls <[email protected]>
  • Loading branch information
daissatou2 and aleksa-krolls authored Feb 15, 2025
1 parent 706f688 commit 48a22aa
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions adaptors/intuit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
title: Intuit Adaptor (QuickBooks)
---

## About Intuit (QuickBooks)

[Intuit](https://www.intuit.com/) provides financial, accounting, and tax management solutions for businesses and individuals, including **QuickBooks**, **TurboTax**, and **Mint**.

## Integration Options

Intuit supports 2 primary integration options:

1. **Rest API**: Intuit has an available [REST API](https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/account#the-account-object) that enables external services like OpenFn to pull data from Intuit, or push data from external apps to Intuit. This option is suited for scheduled, bulk syncs or workflows that must update data in Intuit with external information. See [functions](/adaptors/packages/intuit-docs) for more on how to use this adaptor to work with the API.

2. **Webhook**: Intuit also has a [Webhook or Data Forwarding](https://developer.intuit.com/app/developer/qbo/docs/api/webhooks) to push data from Intuit to external systems. This option is suited for real-time, event-based data integration. Check out the Intuit [developer documentation](https://developer.intuit.com/app/developer/qbo/docs/api/webhooks) to learn how to set up a webhook to push data to OpenFn.

## Authentication

See [Intuit docs](https://developer.intuit.com/app/developer/qbo/docs/develop/authentication-and-authorization) for the latest on supported authentication methods.

When integrating with Intuit via OpenFn, there is one primary authentication method supported: **Access Token**. See this adaptor's [Configuration docs](/adaptors/packages/intuit-configuration-schema) for more on the required authentication parameters.

See platform docs on [managing credentials](/documentation/manage-projects/manage-credentials) for how to configure a credential in OpenFn. If working locally or if using a Raw JSON credential type, then your configuration will look something like this:

```
{
"access_token": "your-qpi-token-JSUzI1NiIsIng1dCI6IjlGW",
"baseUrl": "https://sandbox-quickbooks.api.intuit.com"
}
```

### Helpful Links

1. [API Documentation](https://developer.intuit.com/)
2. [Webhook Configuration Documentation](https://developer.intuit.com/app/developer/qbo/docs/api/webhooks)

0 comments on commit 48a22aa

Please sign in to comment.