Actions20
Overview
This node interacts with the Odoo API to manage Opportunity resources. Specifically, the 'Delete' operation allows users to delete an existing Opportunity by providing its Opportunity ID. This is useful in scenarios where an Opportunity record needs to be removed from the Odoo system, such as when a deal is lost or no longer relevant.
Use Case Examples
- Deleting an Opportunity by specifying its unique Opportunity ID to remove it from the Odoo CRM system.
- Automating cleanup of outdated or invalid Opportunity records in Odoo.
Properties
| Name | Meaning |
|---|---|
| Opportunity ID | The unique identifier of the Opportunity to be deleted. This is a required string input. |
Output
JSON
id- The ID of the deleted Opportunity record, confirming successful deletion.
Dependencies
- Requires Odoo API credentials including URL, username, password, and database name to authenticate and perform API requests.
Troubleshooting
- Common issues include invalid or missing Opportunity ID, which will cause the deletion to fail.
- Authentication errors due to incorrect Odoo API credentials will prevent the node from connecting to the Odoo server.
- If the Opportunity ID does not exist, the API may return an error indicating the record was not found.
Links
- Odoo Official Documentation - Comprehensive resource for understanding Odoo API and its operations.