Actions15
Overview
This node interacts with Oracle Eloqua's REST API to manage custom object data entries. Specifically, the 'Get' operation for the 'Custom Object Data' resource retrieves data of a specific custom object data entry by its ID and parent ID. This is useful for workflows that need to fetch detailed information about a particular custom object data record within Eloqua, such as retrieving customer or campaign-related data stored in custom objects.
Use Case Examples
- Retrieve a specific custom object data entry by providing its parent ID and entry ID to use in further processing or decision-making within an automation workflow.
- Fetch detailed information about a custom object data record to synchronize with other systems or for reporting purposes.
Properties
| Name | Meaning |
|---|---|
| Authentication | The authentication method to use for connecting to the Eloqua API (Basic Authentication or OAuth2). |
| Parent ID | The ID of the parent custom object to which the data entry belongs. Required to identify the context of the custom object data. |
| ID | The ID of the specific custom object data entry to retrieve. Required to fetch the exact data record. |
Output
JSON
id- The unique identifier of the custom object data entry.parentId- The ID of the parent custom object.fieldValues- The custom fields and their values associated with the custom object data entry.additionalFields- Other optional fields related to the custom object data entry, such as name, description, status, etc.
Dependencies
- Oracle Eloqua REST API
Troubleshooting
- Ensure that the provided Parent ID and ID are correct and correspond to existing custom object data entries in Eloqua.
- Authentication errors may occur if the API credentials (Basic Auth or OAuth2 token) are invalid or expired; verify and refresh credentials as needed.
- API rate limits or network issues can cause request failures; check network connectivity and Eloqua API usage limits.
- If the node returns an error about missing parameters, confirm that both Parent ID and ID are provided and not empty.
Links
- Oracle Eloqua REST API Documentation - Official documentation for Oracle Eloqua REST API endpoints and usage.
