NetSuite
Connect to your users' NetSuite ERP systems
You'll need the following information to set up your NetSuite App with Paragon Connect:
- Consumer Key
- Consumer Secret
- Scopes Requested
Under Integrations > Connected Integrations > {YOUR_APP} > Settings, fill out your credentials from your developer app in their respective sections:
- Consumer Key: Found under Setup > Integration > Manage Integrations on your NetSuite App page.
- Consumer Secret: Found under Setup > Integration > Manage Integrations on your NetSuite App page.
- Permissions: Select the scopes you've requested for your application.
Leaving the Client ID and Client Secret blank will use Paragon development keys..

Once your users have connected their NetSuite account, you can use the Paragon SDK to access the NetSuite API on behalf of connected users.
Any NetSuite API endpoints can be accessed with the Paragon SDK as shown in this example.
// You can find your project ID in the Overview tab of any Integration
// Authenticate the user
paragon.authenticate(<ProjectId>, <UserToken>);
// Get a list of purchase orders filtered by a search
paragon.request("netsuite", "/purchaseOrder?q=[Query]", {
method: "GET"
});
// Get a list of vendors
paragon.request("netsuite", "/vendor", {
method: "GET"
});
Once your NetSuite account is connected, you can add steps to perform the following actions:
- Create Vendor
- Update Vendor
- Get Vendor by ID
- Search Vendors
- Delete Vendor
- Create Bill
- Update Bill
- Get Bill by ID
- Search Bills
- Delete Bill
- Create Account
- Update Account
- Get Account by ID
- Search Accounts
- Delete Account
- Create Tax Group
- Update Tax Group
- Get Tax Group by ID
- Delete Tax Group
- Search Payment Terms
- Get Payment Term by ID
- Search Posting Periods
When using NetSuite, you can reference data from previous steps by typing
{{
to invoke the variable menu.Last modified 1yr ago