diff --git a/docs-v2/integrations/all/sage-intacct-oauth.mdx b/docs-v2/integrations/all/sage-intacct-oauth.mdx new file mode 100644 index 00000000000..261154ea2a9 --- /dev/null +++ b/docs-v2/integrations/all/sage-intacct-oauth.mdx @@ -0,0 +1,97 @@ +--- +title: Sage Intacct (OAuth) +sidebarTitle: Sage Intacct (OAuth) +--- + +import Overview from "/snippets/overview.mdx" +import PreBuiltTooling from "/snippets/generated/sage-intacct-oauth/PreBuiltTooling.mdx" +import PreBuiltUseCases from "/snippets/generated/sage-intacct-oauth/PreBuiltUseCases.mdx" + + + + + +## Access requirements +| Pre-Requisites | Status | Comment| +| - | - | - | +| Paid dev account | ✅ Not required | Free, self-signup [here](https://developer.sage.com/intacct/). | +| Paid test account | ✅ Not required | Create a 30 day free trial account [here](https://online.sageintacct.com/WebsiteAssets_request_trial.html). | +| Partnership | ❓ | | +| App review | ❓ | | +| Security audit | ❓ | | + + +## Setup guide +- You must have an active Sage Intacct Web Services developer license, which includes a Web Services sender ID and password or access to a free trial period account. +If you need a developer license, contact your account manager. + + + + Go to [developer console](https://developer.sage.com/intacct/) and login if you have an account or signup for a free developer's account. + + Click **View workspaces**, then enter your Sage account email address and password to log in. + + Click **Add workspace** to create a workspace for your company. + + Enter a name for your workspace and a contact email address, then click **Create**. + + + + Click **Apps** in the left column navigation. + + Click **Add application**. + + Enter a name to identify the application in your workspace, a home page URL, and a contact email address for the application, then click **Create**. + + + From the list of applications in your workspace, click your new application to open it. + + Click **Create API keys**. + + From the **Sage Product API** drop-down list, select Sage Intacct. + + Enter a Redirect URI as a full URL. During the authorization process, users will be redirected to this URL after authorizing your application to access their data in Sage Intacct. You can configure the following Redirect URL: `https://api.nango.dev/oauth/callback`. + + If you have custom applications that send Sage Intacct API requests from your domains, enter those domains in **Allowed Origin Domains** as full https URLs. + + Enter your Sage Intacct Web Services sender ID and password. + + From the **Client Scope** drop-down list, select the type of company to associate with these API keys: + + - **Non-Production**: Choose this option if you're working with a sandbox implementation or other non-production company. + + - **Production**: Choose this option if you're working with a live production company. Production companies are limited to no more than five associated API keys. + + You cannot change the client scope after it has been set + + Click **Create**. + + When your registration is complete, the Application Details page will include an API Keys section. Click **Sage Intacct** in that list to view your application's **client ID** and **secret key**. + + + Follow the [_Quickstart_](/getting-started/quickstart). + + + +Need help getting started? Get help in the [community](https://nango.dev/slack). + +Contribute improvements to the setup guide by [editing this page](https://github.com/nangohq/nango/tree/master/docs-v2/integrations/all/sage-intacct-oauth.mdx) + + +## Useful links + +| Topic | Links | +| - | - | +| General | [Website](https://www.sage.com/en-gb/sage-business-cloud/intacct/) | +| | [Create a test account](https://online.sageintacct.com/WebsiteAssets_request_trial.html) | +| Developer | [API documentation](https://developer.sage.com/intacct/docs/) | +| | [Create or Login to a developer account](https://app-registry.sage.com/) | +| | [Developer console](https://developer.sage.com/intacct/) | +| | [Authorization documentation](https://developer.sage.com/intacct/docs/developer-portal/guides/oauth2/#authorization-code-grant-type) | + + +Contribute useful links by [editing this page](https://github.com/nangohq/nango/tree/master/docs-v2/integrations/all/sage-intacct-oauth.mdx) + +## API gotchas + +Contribute API gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs-v2/integrations/all/sage-intacct-oauth.mdx) \ No newline at end of file diff --git a/docs-v2/mint.json b/docs-v2/mint.json index 1a7c10c7f4c..eab3d332109 100644 --- a/docs-v2/mint.json +++ b/docs-v2/mint.json @@ -544,6 +544,7 @@ "integrations/all/rippling", "integrations/all/sage", "integrations/all/sage-intacct", + "integrations/all/sage-intacct-oauth", "integrations/all/salesforce", "integrations/all/salesforce-experience-cloud", "integrations/all/salesforce-cdp", diff --git a/docs-v2/snippets/generated/sage-intacct-oauth/PreBuiltTooling.mdx b/docs-v2/snippets/generated/sage-intacct-oauth/PreBuiltTooling.mdx new file mode 100644 index 00000000000..b61697a288c --- /dev/null +++ b/docs-v2/snippets/generated/sage-intacct-oauth/PreBuiltTooling.mdx @@ -0,0 +1,41 @@ +## Pre-built tooling + + +| Tools | Status | +| - | - | +| Pre-built authorization (OAuth) | ✅ | +| Credentials auto-refresh | ✅ | +| Auth parameters validation | ✅ | +| Pre-built authorization UI | ✅ | +| Custom authorization UI | ✅ | +| Expired credentials detection | ✅ | + + +| Tools | Status | +| - | - | +| Pre-built integrations | 🚫 (time to contribute: <48h) | +| API unification | ✅ | +| 2-way sync | ✅ | +| Webhooks from Nango on data modifications | ✅ | +| Real-time webhooks from 3rd-party API | 🚫 (time to contribute: <48h) | +| Proxy requests | ✅ | + + +| Tools | Status | +| - | - | +| HTTP request logging | ✅ | +| End-to-type type safety | ✅ | +| Data runtime validation | ✅ | +| OpenTelemetry export | ✅ | +| Slack alerts on errors | ✅ | +| Integration status API | ✅ | + + +| Tools | Status | +| - | - | +| Create or customize use-cases | ✅ | +| Pre-configured pagination | 🚫 (time to contribute: <48h) | +| Pre-configured rate-limit handling | 🚫 (time to contribute: <48h) | +| Per-customer configurations | ✅ | + + \ No newline at end of file diff --git a/docs-v2/snippets/generated/sage-intacct-oauth/PreBuiltUseCases.mdx b/docs-v2/snippets/generated/sage-intacct-oauth/PreBuiltUseCases.mdx new file mode 100644 index 00000000000..7c7c0e3b645 --- /dev/null +++ b/docs-v2/snippets/generated/sage-intacct-oauth/PreBuiltUseCases.mdx @@ -0,0 +1,5 @@ +## Pre-built integrations + +_No pre-built integration yet (time to contribute: <48h)_ + +Not seeing the integration you need? [Build your own](https://docs.nango.dev/guides/custom-integrations/overview) independently. diff --git a/packages/providers/providers.yaml b/packages/providers/providers.yaml index a0244067d72..cfc4a41ff0c 100644 --- a/packages/providers/providers.yaml +++ b/packages/providers/providers.yaml @@ -6632,6 +6632,24 @@ sage: base_url: https://api.accounting.sage.com docs: https://docs.nango.dev/integrations/all/sage +sage-intacct-oauth: + display_name: Sage Intacct (OAuth) + categories: + - accounting + - erp + auth_mode: OAUTH2 + authorization_url: https://api.intacct.com/ia/api/v1/oauth2/authorize + token_url: https://api.intacct.com/ia/api/v1/oauth2/token + authorization_params: + response_type: code + token_params: + grant_type: authorization_code + refresh_params: + grant_type: refresh_token + proxy: + base_url: https://api.intacct.com/ia/api + docs: https://docs.nango.dev/integrations/all/sage-intacct-oauth + sage-intacct: display_name: Sage Intacct categories: diff --git a/packages/webapp/public/images/template-logos/sage-intacct-oauth.svg b/packages/webapp/public/images/template-logos/sage-intacct-oauth.svg new file mode 120000 index 00000000000..a34256e62e2 --- /dev/null +++ b/packages/webapp/public/images/template-logos/sage-intacct-oauth.svg @@ -0,0 +1 @@ +sage.svg \ No newline at end of file