Actions111
- Item Actions
- Webhook Actions
- Collection Actions
- File Actions
- Activity Actions
- Asset Actions
- Authentication Actions
- Extension Actions
- Field Actions
- Folder Actions
- Permission Actions
- Preset Actions
- Relation Actions
- Revision Actions
- Role Actions
- Setting Actions
- User Actions
- Utility Actions
Overview
The "Webhook - Delete Multiple" operation in this custom n8n node allows users to delete multiple webhooks at once by specifying their primary keys. This is useful for bulk management of webhooks, such as cleaning up unused or obsolete webhook entries in a system. For example, if you have several test webhooks that are no longer needed, you can remove them all in a single workflow step.
Properties
| Name | Meaning |
|---|---|
| Keys (JSON) | An array of webhook primary keys to delete. Example: [2, 15, 41] |
Output
- The output will be a JSON object reflecting the result of the deletion operation. Typically, this may include information about which webhooks were successfully deleted and possibly any errors encountered for specific keys.
- No binary data is produced by this operation.
Dependencies
- This node likely requires access to a Directus API or service where the webhooks are managed.
- Proper authentication (such as an API key or credentials) may be necessary, depending on your n8n and Directus setup.
Troubleshooting
- Invalid Keys: If the provided keys do not correspond to existing webhooks, the node may return an error or indicate which deletions failed.
- Malformed JSON: If the "Keys (JSON)" property is not a valid JSON array, the node may throw a parsing error. Ensure you input a valid array format, e.g.,
[1, 2, 3]. - Permission Issues: If the connected account does not have permission to delete webhooks, the operation will fail with an authorization error.