Actions100
- Activity Actions
- Asset Actions
- Authentication Actions
- Collection Actions
- Extension Actions
- Field Actions
- File Actions
- Folder Actions
- Item Actions
- Permission Actions
- Preset Actions
- Relation Actions
- Revision Actions
- Role Actions
- Setting Actions
- User Actions
- Utility Actions
Overview
This node is designed to delete an "Activity" resource by its unique identifier. It is useful in scenarios where you need to remove specific activity records from a system, such as deleting logs, user actions, or event entries that are no longer needed or were created in error.
For example, if you have an activity log and want to delete a particular entry by its ID, this node allows you to specify the ID and perform the deletion operation efficiently.
Properties
Name | Meaning |
---|---|
ID | Unique identifier for the activity object to be deleted. Must be a number greater than or equal to 1. |
Output
The output of this node typically contains JSON data indicating the result of the delete operation. This may include confirmation of successful deletion or details about the deleted record. The exact structure depends on the underlying API response but generally confirms whether the specified activity was removed.
No binary data output is expected from this operation.
Dependencies
- Requires access to the external service managing the "Activity" resources.
- Needs proper authentication credentials (e.g., an API key or token) configured in n8n to authorize the delete request.
- The node relies on internal routing and method handling defined in bundled dependencies, which manage the actual API calls.
Troubleshooting
Common issues:
- Providing an invalid or non-existent ID will likely result in an error indicating the resource could not be found.
- Missing or incorrect authentication credentials can cause authorization failures.
- Network connectivity problems may prevent the node from reaching the external service.
Error messages and resolutions:
- "Resource not found": Verify that the ID provided corresponds to an existing activity.
- "Unauthorized" or "Authentication failed": Check that the API key or authentication token is correctly set up in n8n.
- Timeout or network errors: Ensure stable internet connection and that the external service endpoint is reachable.
Links and References
- Refer to the external service's API documentation for detailed information on the Activity resource and delete operation.
- Consult n8n documentation on setting up API credentials and handling HTTP requests for further guidance.