Skip to main content

Connecting to Oracle Financials Cloud

Your users will need the following information to connect their Oracle Financials Cloud account with your integration built with Paragon Connect:
  • App Name
  • Scopes Requested
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
// 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>”]
  }
});

Building Oracle Financials Cloud workflows

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
You can also use the Oracle Financials Cloud Request step to access any of Oracle Financials Cloud’s API endpoints without the authentication piece. When using Oracle Financials Cloud, you can reference data from previous steps by typing {{ to invoke the variable menu.