Actions76
- Message Actions
- Chat Actions
- Contact Actions
- Group Actions
- Create
- List
- Get
- Delete
- Join
- Get Join Info
- Leave
- Get Picture
- Set Picture
- Delete Picture
- Update Subject
- Update Description
- Get Security Info Admin Only
- Set Security Info Admin Only
- Get Security Messages Admin Only
- Set Security Messages Admin Only
- Get Participants
- Add Participant
- Remove Participant
- Promote Admin
- Demote Admin
- Status Actions
- Channel Actions
- Poll Actions
- Profile Actions
- LID Actions
- File Actions
Overview
This node enables interaction with WhatsApp channels via the Wappfy API. Specifically, the "Delete" operation under the "Channel" resource allows users to delete a WhatsApp channel by its ID. This is useful for managing and cleaning up channels that are no longer needed or relevant.
Practical scenarios include:
- Removing obsolete or inactive channels from your WhatsApp management system.
- Automating channel lifecycle management in workflows where channels are dynamically created and deleted.
- Ensuring compliance by deleting channels that should no longer be accessible.
Properties
| Name | Meaning |
|---|---|
| Channel ID | The unique identifier of the channel to delete. |
Output
The output JSON contains the response from the Wappfy API after attempting to delete the specified channel. It typically includes confirmation of deletion or error details if the operation failed.
Example output structure:
{
"json": {
// API response confirming deletion or error information
}
}
No binary data is output by this operation.
Dependencies
- Requires an active Wappfy API credential with a valid API key and instance name configured in n8n.
- The node makes HTTP requests to the Wappfy API base URL using these credentials.
- Proper network access to the Wappfy API endpoint is necessary.
Troubleshooting
Common issues:
- Invalid or missing Channel ID: Ensure the Channel ID provided is correct and exists.
- Authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Network connectivity problems: Confirm that the n8n instance can reach the Wappfy API endpoint.
Error messages:
- Errors returned from the API will be included in the output JSON under an
errorfield if the node is set to continue on fail. - If not continuing on fail, the node will throw an error with the message from the API or request failure.
- Errors returned from the API will be included in the output JSON under an
Resolution tips:
- Double-check input parameters for correctness.
- Review API key validity and permissions.
- Check logs and network settings for connectivity issues.
Links and References
- Wappfy API Documentation (for detailed API endpoints and usage)
- n8n Documentation (for general node usage and credential setup)