Authorizing QuickBooks’ API in Astera

The QuickBooks API is a RESTful API that allows you to read or write data to and from QuickBooks. It uses the ‘OAuth 2’ authentication type. You can configure a QuickBooks API in Astera by using the Import API option present in the REST API Browser.

QuickBooks does not provide an Open API definition, so we will add the request manually by using a Custom API in Astera.

We only need to follow the steps from Development > Create and Configure an App from the following link:

Authentication steps: https://developer.intuit.com/app/developer/qbo/docs/build-your-first-app

Where the Redirect Url used in step 7 in the above link for Astera would be:

Redirect Url for Astera Server: http://{Server_Name}:8050/)

Note: Save ClientID and secret to use it afterward in Astera authentication

Follow these steps to authorize QuickBooks’ API in Astera:

  1. Create an integration project in Astera.

  2. Create a Custom API and provide a Name and Base URL.

Base Url (Sandbox): https://sandbox-quickbooks.api.intuit.com

Base Url (Production): URL:https://quickbooks.api.intuit.com

  1. Now, you need to authenticate QuickBooks APIs to be able to use them in your dataflow. Without authentication, you will get an error. To authenticate an API, go to the Project Explorer and double-click on the API’s .sact file under the Shared Connection node.

The QuickBooks .sact file will open in the designer. Now, right-click on the Shared Action file’s header and select Properties.

  1. QuickBooks uses the ‘OAuth 2Security Type with Grant Type, ‘Authentication Code’.

Auth Url: https://appcenter.intuit.com/connect/oauth2

Token Url: https://oauth.platform.intuit.com/oauth2/v1/tokens/bearer

ClientID: {ClientID}

Client Secret: {Client_Secret}

Scope: {Scope}

State: {State}

Additional Info - You can modify the authorization by mentioning the names of only those permissions that you want to access from QuickBooks in Astera.

Note: While working with QuickBooks APIs, it is necessary to specify Scope and State to generate the access token.

  1. Click OK, and save the Shared Action file (.sact).

  2. Add methods in the REST API Browser that you want to access in Astera by adding requests and you are ready to use QuickBooks APIs in Astera.

Reference Link: https://developer.intuit.com/app/developer/qbo/docs/api/accounting/most-commonly-used/account

This concludes authorizing a QuickBooks API in Astera.

Last updated