Actions12
Overview
This node integrates with the Zep AI Memory Service to manage users, sessions, and memory data. Specifically for the User Delete operation, it allows you to delete a user from the Zep service by specifying the unique user identifier.
Common scenarios where this node is beneficial include:
- Cleaning up user data when a user account is removed from your system.
- Managing user lifecycle by programmatically deleting users no longer needed.
- Automating user management workflows in applications that use Zep AI Memory Service.
For example, if you have an automation that deactivates users after inactivity, you can use this node to delete those users from the Zep service automatically.
Properties
| Name | Meaning |
|---|---|
| User ID | The unique identifier for the user to delete |
Output
The output JSON contains the response from the Zep API after attempting to delete the specified user. Typically, this will be an empty object or confirmation of deletion depending on the API's response.
If an error occurs (e.g., user not found), the output will contain an error field with the error message.
No binary data is output by this operation.
Dependencies
- Requires an API key credential for authenticating with the Zep AI Memory Service.
- The node uses the base URL and API key from these credentials to make HTTP requests.
- No additional external dependencies are required beyond network access to the Zep API.
Troubleshooting
Common issues:
- Providing an invalid or non-existent User ID will likely result in an error from the API.
- Missing or incorrect API key credential will cause authentication failures.
- Network connectivity issues may prevent successful API calls.
Error messages:
"error": "User not found"— The specified User ID does not exist; verify the ID.- Authentication errors — Check that the API key credential is correctly configured.
- JSON parsing errors on metadata input (not relevant for delete but possible in other operations) — Ensure JSON fields are valid.
To resolve errors, verify the User ID, ensure correct API credentials, and check network connectivity.
Links and References
- Zep AI Memory Service Documentation (for API details and user management)
- n8n documentation on creating custom nodes