Actions23
- Typebot Actions
- Chat Actions
- Result Actions
- Workspace Actions
Overview
This node integrates with the Typebot.io API, specifically focusing on managing conversation results when using the "Delete Result" operation under the "Result" resource. The node allows users to delete a specific conversation result by providing its unique ID and the associated typebot ID.
Common scenarios for this node include:
- Cleaning up old or irrelevant conversation data from your Typebot analytics.
- Managing storage by removing unwanted conversation results.
- Automating maintenance tasks in workflows that handle chatbot interactions.
For example, after processing and exporting conversation results, you might want to delete those results automatically to keep your workspace tidy.
Properties
| Name | Meaning |
|---|---|
| Result ID | The unique identifier of the conversation result to delete. |
| Additional Fields | A collection of optional fields (not typically used for delete operation). |
Note: For the "Delete Result" operation, only the Result ID is required and relevant.
Output
The node outputs a JSON object representing the response from the Typebot API after attempting to delete the specified result. Typically, this will be a confirmation of deletion or an error message if the deletion failed.
The output structure is:
{
"json": {
// API response confirming deletion or error details
},
"pairedItem": {
"item": <index_of_input_item>
}
}
No binary data is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Typebot API.
- The node uses the Typebot API base URL and an API token configured in the credentials.
- No additional external dependencies are needed beyond the configured API access.
Troubleshooting
Error: Unknown result operation
This indicates the operation parameter was set incorrectly. Ensure "Delete Result" is selected under the "Result" resource.API authentication errors
Verify that the API key and token credentials are correctly configured and have sufficient permissions to delete results.Result not found or already deleted
If the provided Result ID does not exist, the API may return an error. Double-check the Result ID value.Network or connectivity issues
Ensure the n8n instance can reach the Typebot API endpoint and that no firewall or proxy blocks the requests.
Links and References
- Typebot.io Official Website
- Typebot API Documentation (for detailed API endpoints and usage)
- n8n Documentation (for general usage of this node)