Actions92
- Contact Actions
- Employee Actions
- Estimate Actions
- Invoice Actions
- Job Actions
- Line Item Actions
- Note Actions
- Setting Actions
- Supplier Actions
- Task Actions
- Technician Actions
- User Actions
- Website Actions
- WhatsApp Actions
Overview
The node interacts with the WibiClick API to manage various resources, including estimates. Specifically, for the Delete Estimate operation, it allows users to delete an existing estimate by specifying the website and estimate IDs. This is useful in scenarios where an estimate is no longer valid or was created in error and needs to be removed from the system.
Practical example:
- A user wants to automate cleanup of outdated or canceled estimates from their WibiClick account. By using this node operation, they can programmatically delete those estimates based on certain criteria or triggers within their workflow.
Properties
| Name | Meaning |
|---|---|
| Website ID | The unique identifier of the website associated with the estimate. Required to specify the context for the estimate. |
| Estimate ID | The unique identifier of the estimate to be deleted. |
Output
The output JSON contains the response from the WibiClick API after attempting to delete the estimate. Typically, this will include a success confirmation or details about the deletion result. The exact structure depends on the API's response but generally indicates whether the deletion was successful.
Example output JSON:
{
"success": true,
"message": "Estimate deleted successfully"
}
or an error message if deletion failed.
No binary data output is involved in this operation.
Dependencies
- Requires an active connection to the WibiClick API.
- Requires an API key credential for authentication with the WibiClick service.
- The node uses HTTP requests to communicate with the WibiClick API endpoints.
- No additional environment variables are explicitly required beyond the API key credential.
Troubleshooting
Common issues:
- Invalid or missing Website ID or Estimate ID parameters will cause the request to fail.
- Network connectivity issues may prevent communication with the WibiClick API.
- Insufficient permissions or invalid API key credentials will result in authorization errors.
- Attempting to delete an estimate that does not exist or has already been deleted may return an error.
Error messages and resolutions:
"Failed to delete estimate"or similar API error: Verify that the Website ID and Estimate ID are correct and that the estimate exists.- Authorization errors: Check that the API key credential is valid and has the necessary permissions.
- Network errors: Ensure that the server running n8n has internet access and can reach the WibiClick API endpoint.
Links and References
- WibiClick API Documentation (hypothetical link, replace with actual if available)
- n8n documentation on HTTP Request Node for understanding how API calls are made within nodes.