Actions13
- Speech Actions
- Voice Actions
- History Actions
- User Actions
Overview
This node integrates with the ElevenLabs API to manage and interact with speech synthesis resources. Specifically, for the History resource with the Delete History Item operation, it allows users to delete a specific history item from their generation history on ElevenLabs. This is useful for managing and cleaning up past generated speech records that are no longer needed or to maintain privacy by removing sensitive entries.
Practical examples include:
- Removing outdated or incorrect speech generation records.
- Cleaning up history items to reduce clutter in the user’s account.
- Managing storage or compliance by deleting unnecessary data.
Properties
Name | Meaning |
---|---|
API Key Notice | A notice informing the user that an API key from ElevenLabs is required to use this node. It includes a link to obtain the key from the ElevenLabs dashboard. |
History Item ID | The unique identifier of the history item to be deleted. This is a required string input specifying which history record to remove. |
Output
The node outputs JSON data representing the result of the deletion request. Typically, this will confirm whether the deletion was successful or provide error details if it failed. There is no binary output associated with this operation.
Dependencies
- Requires an API key credential from ElevenLabs to authenticate requests.
- The node sends HTTP POST requests to the ElevenLabs API endpoint at
https://api.elevenlabs.io/v1
. - Proper configuration of the API key in n8n credentials is necessary for the node to function.
Troubleshooting
Common issues:
- Invalid or missing API key: The node will fail authentication; ensure the API key is correctly set up.
- Incorrect History Item ID: If the provided ID does not exist or is malformed, the API will return an error.
- Network or connectivity problems may cause request failures.
Error messages:
- Authentication errors typically indicate invalid or missing API keys.
- Not found errors suggest the specified history item ID does not exist.
- Rate limiting or quota exceeded errors may occur if API usage limits are reached.
To resolve these, verify the API key, double-check the history item ID, and ensure network connectivity.
Links and References
- ElevenLabs Dashboard – Obtain your API key here.
- ElevenLabs API Documentation – For detailed API usage and endpoints.