Select Oracle Financials Cloud from the Integrations Catalog.
Under Integrations > Connected Integrations > Oracle Financials Cloud > App Configuration > Configure, fill out your credentials in their respective sections:
App Name:
Specify an app name to appear on Oracle Financials Cloud
Permissions: Select the scopes you’ve requested for your application. For a list of recommended scopes, please view this integration within your Paragon dashboard. View dashboard.
Press the purple “Save Changes” button to save your credentials.
Note: Leaving the App Name blank will use Paragon development keys.
Once your users have connected their Oracle Financials Cloud account, you can use the Paragon SDK to access the Oracle Financials Cloud API on behalf of connected users.See the Oracle Financials Cloud REST API documentation for their full API reference.Any Oracle Financials Cloud API endpoints can be accessed with the Paragon SDK as shown in this example
JavaScript
Copy
Ask AI
// You can find your project ID in the Overview tab of any Integration.// Authenticate the userparagon.authenticate(<ProjectID>, <Paragon User Token>);// Get an Invoiceawait paragon.request("oraclefinancialscloud", "/invoices/<Invoice ID>", { method: “GET”,});// Calculate Tax for an Invoiceawait paragon.request("oraclefinancialscloud", "/invoices", { method: “POST”, body: { name: “calculateTax”, parameters: [“<Invoice ID>”, “<Business Unit>”, “<Supplier>”] }});