Netsuite
API configuration: netsuite, netsuite-tba
Features
🚫 (time to contribute: <48h)
We can implement missing features in <48h, just ask for it in the community.
Getting started
Scopes (
restlets,rest_webservicesand/orsuite_analytics)
Need help getting started? Get help in the community.
Connection configuration in terapi
Netsuite requires a user specific account id to run OAuth.
You should request this from the user and pass it to terapi in the terapi.auth() call:
For more details see the docs here.
API gotchas
There doesn't seem to be a way to create a Netsuite account without scheduling a call.
The
netsuiteintegration which uses OAuth 2.0 has a refresh token that has a fixed expiration of 7 days. After which point the refresh token becomes invalid and a new access token must be obtained by making users go through the authorization code flow again. To avoid this we recommend using the machine to machine flow which is called thenetsuite-tbaintegration in terapi
Add Getting Started links and Gotchas by editing this page
Admin Setup for netsuite-tba
netsuite-tbaEnsure you have admin privileges and login to your Netsuite account and navigate to Setup > Company > Enable Features
Under the "SuiteTalk" header make sure the SOAP WEB SERVICES and REST WEB SERVICES checkboxes are checked
- Under the "**Manage Authentication**" header make sure the _TOKEN-BASED AUTHENTICATION_ checkbox is checked
- Click the save button - Navigate to **Setup** > **Integration** > **Manage Integrations** > **New** - Set the desired name of this integration - Enable _TOKEN-BASED AUTHENTICATION_ and disable _TBA: AUTHORIZATION FLOW_ and _AUTHORIZATION CODE GRANT_
- Click the save button - The client credentials will now be displayed and be sure to copy the **Consumer Key**, **Client ID**, **Consumer Secret**, and **Client Secret** - Navigate to the homepage by clicking the home icon - At the button left corner click the **Manage Access Tokens** button
- Select the **Application Name** you created for this integration - Enter a "**Token Name**" - Save your new access token - The token credentials will now be displayed. Copy the "**Token ID**" & "**Token Secret**" - In terapi create a new integration using the `netsuite-tba` and leave the "Client Id" and "Client Secret" values empty. - Create a new connection and for the "**OAuth Client Id Override**" value paste in the value you received from Netsuite called "**Client ID**" and for the "**OAuth Client Secret**" value paste in the value you received from Netsuite called "**Client Secret**". For "**Token ID**" & "**Token Secret**" paste in the values you received from Netsuite from the access token step. The account ID value can be found from your [Netsuite URL instance](https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/section_1498754928.html) - If done programmatically using the terapi frontend sdk: ```js terapi.auth('netsuite-tba', connectionId, { params: { accountId: ACCOUNT_ID }, credentials: { token_id: TOKEN_ID, token_secret: TOKEN_SECRET, oauth_client_id_override: CLIENT_ID, oauth_client_secret_override: CLIENT_SECRET, } }) ```
Last updated