Oracle Eloqua

Connect to your users' Oracle Eloqua accounts

Setup Guide

You can find your Oracle Eloqua app credentials by visiting your Oracle Eloqua App dashboard.

Note: You'll need to create a new Oracle Eloqua app if you don't already have one.

You'll need the following information to set up your Oracle Eloqua App with Paragon Connect:

  • Client ID

  • Client Secret

  • Scopes Requested

Add the Redirect URL to your Oracle Eloqua app

Paragon provides a redirect URL to send information to your Oracle Eloqua app. To add the redirect URL to your Oracle Eloqua app:

1. Copy the link under "Redirect URL" in your integration settings in Paragon. The Redirect URL is:

https://passport.useparagon.com/oauth

2. Log in to your Slack App dashboard and select your Oracle Eloqua app.

3. In your Slack App page sidebar, navigate to OAuth & Permissions > Redirect URLs.

4. Press "Add New Redirect URL".

5. Paste-in the redirect URL from Paragon. The redirect URL can be found in Step 1.

6. Press "Add", then press "Save URLs".

Slack provides you with the Client ID and Client Secret needed for the next steps after adding the redirect URL to your application. You can find the credentials under Basic Information > App Credentials in the Slack app sidebar.

Add your Oracle Eloqua app to Paragon

1. Select Oracle Eloqua from the Integrations Catalog.

2. Under Integrations > Connected Integrations > {YOUR_APP} > Settings, fill out your credentials from the end of Step 1 in their respective sections:

  • Client ID: Found under Basic Information > App Credentials > Client ID on your Slack App page.

  • Client Secret: Found under Basic Information > App Credentials > Client Secret on your Slack App page.

  • Permissions: Select the scopes you've requested for your application.

Press the blue "Connect" button to save your credentials.

Note: Leaving the Client ID and Client Secret blank will use Paragon development keys.

Connecting to Oracle Eloqua

Once your users have connected their Oracle Eloqua account, you can use the Paragon SDK to access the Oracle Eloqua API on behalf of connected users.

See the Oracle Eloqua REST API documentation for their full API reference.

Any Oracle Eloqua 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 all campaigns
await paragon.request("eloqua", "/api/rest/2.0/assets/campaigns", {
  method: "GET"
});

// Create a campaign
await paragon.request("eloqua", "/api/rest/2.0/assets/campaign", {
  method: "POST",
  body: {
    name: "New campaign",
    elements: []
  }
});

// Activate a campagin
await paragon.request("eloqua", "/api/rest/2.0/assets/campaign/active/<Campaign ID>", {
method: "POST",
body: {
  activateNow: true
}
});

Building Oracle Eloqua workflows

Once your Oracle Eloqua account is connected, you can add steps to perform the following actions:

  • Create Campaign

  • Update Campaign

  • Activate Campaign

  • Search Campaigns

  • Get Campaign by ID

  • Create Email

  • Update Email

  • Search Emails

  • Send Email Deployment

  • Create Contact

  • Update Contact

  • Search Contacts

When creating or updating campaigns or contacts in Oracle Eloqua, you can reference data from previous steps by typing {{ to invoke the variable menu.

Last updated