Actions15
Overview
This node interacts with the Oracle Eloqua REST API to manage contacts. Specifically, the 'Delete' operation for the 'Contact' resource allows users to delete a contact entry by specifying its ID. This is useful for scenarios where contacts need to be removed from the Eloqua database, such as cleaning up outdated or incorrect contact information.
Use Case Examples
- Deleting a contact by providing its unique ID to remove it from the Eloqua system.
- Automating contact management workflows by deleting contacts that meet certain criteria.
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 be deleted. This is a required field for the delete operation. |
Output
JSON
id- The ID of the deleted contact.status- The status or result of the delete operation.
Dependencies
- Oracle Eloqua REST API
Troubleshooting
- Ensure the contact ID provided is valid and exists in the Eloqua system; otherwise, the delete operation will fail.
- Check that the authentication credentials (Basic Auth or OAuth2) are correctly configured and have the necessary permissions to delete contacts.
- If the node throws an error about missing or invalid parameters, verify that the 'ID' field is correctly set and not empty.
Links
- Oracle Eloqua REST API - Contacts - Official documentation for managing contacts via the Oracle Eloqua REST API.
