Comment on page
Oracle Financials Cloud
Connect your Oracle Financials Cloud for OAuth in Paragon.
You'll need the following information to set up your Oracle Financials Cloud App with Paragon Connect:
- App Name
- Scopes Requested
1. Select Oracle Financials Cloud from the Integrations Catalog.
2. Under Integrations > Connected Integrations > {YOUR_APP} > Settings, 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.
Press the blue "Connect" 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.
Any Oracle Financials Cloud API endpoints can be accessed with the Paragon SDK as shown in this example
JavaScript
// You can find your project ID in the Overview tab of any Integration.
// Authenticate the user
paragon.authenticate(<ProjectID>, <Paragon User Token>);
// Get an Invoice
await paragon.request("oraclefinancialscloud", "/invoices/<Invoice ID>", {
method: “GET”,
});
// Calculate Tax for an Invoice
await paragon.request("oraclefinancialscloud", "/invoices", {
method: “POST”,
body: {
name: “calculateTax”,
parameters: [“<Invoice ID>”, “<Business Unit>”, “<Supplier>”]
}
});
Once your Oracle Financials Cloud account is connected, you can add steps to perform the following actions:
- Search Invoices
- Create Invoice
- Update Invoice
- Build Invoice Line Item
- Validate Invoice
When using Oracle Financials Cloud, you can reference data from previous steps by typing
{{
to invoke the variable menu.Last modified 1yr ago