Oracle Eloqua icon

Oracle Eloqua

Consume Oracle Eloqua REST API

Actions15

Overview

This node interacts with the Oracle Eloqua REST API to manage contacts. Specifically, the 'Get' operation for the 'Contact' resource retrieves data of a specific contact by its ID. This is useful for workflows that need to fetch detailed information about a contact stored in Eloqua, such as for marketing automation, customer relationship management, or data synchronization tasks.

Use Case Examples

  1. Retrieve contact details by ID to personalize email campaigns.
  2. Fetch contact information to update a CRM system with the latest data from Eloqua.

Properties

Name Meaning
Authentication The authentication method to use for connecting to the Eloqua API, either Basic Authentication or OAuth2.
ID The unique identifier of the contact to retrieve.

Output

JSON

  • id - The unique identifier of the contact.
  • emailAddress - The email address of the contact.
  • fieldValues - Custom field values associated with the contact.
  • additionalFields - Other optional fields of the contact such as name, status, phone numbers, addresses, etc.

Dependencies

  • Oracle Eloqua REST API

Troubleshooting

  • Ensure the contact ID provided is valid and exists in Eloqua; otherwise, the API will return an error indicating the contact was not found.
  • Verify that the authentication credentials (Basic Auth or OAuth2 token) are correctly configured and have the necessary permissions to access contact data.
  • If the API request limit is exceeded, the node may fail; consider handling rate limits or retry logic in your workflow.

Links

Discussion