Overview
This node interacts with the Clint API to manage deals (business transactions). It supports operations to list all deals, get details of a specific deal by ID, create a new deal, update an existing deal, and delete a deal. This node is useful for automating deal management workflows, such as syncing deal data between Clint and other systems, or managing deals programmatically within an automation.
Use Case Examples
- Retrieve details of a specific deal by providing its Deal ID.
- Create a new deal by specifying title, contact ID, value, group ID, and origin ID.
- Update an existing deal's information using its Deal ID and new data.
- Delete a deal by its Deal ID.
Properties
| Name | Meaning |
|---|---|
| Deal ID | The unique identifier of the deal to get, update, or delete. Required for get, update, and delete operations. |
Output
JSON
json- The JSON response from the Clint API containing deal data or operation result.
Dependencies
- Requires an API token credential for Clint API authentication.
Troubleshooting
- Ensure the API token credential is correctly configured and valid to avoid authentication errors.
- Verify that the Deal ID provided exists in Clint to prevent 'not found' errors when getting, updating, or deleting a deal.
- Check network connectivity and API endpoint availability if requests fail.
- Handle API error responses gracefully; error messages and details are returned in the output JSON under 'error' and 'details' fields.
Links
- Clint API Documentation - Official documentation for the Clint API, useful for understanding available endpoints and data structures.