Quepasa (Whatsapp) icon

Quepasa (Whatsapp)

Non Official Whatsapp API

Actions11

Overview

The Quepasa (Whatsapp) node's "Webhook - Remove" operation allows you to unregister or remove a webhook URL from your Quepasa WhatsApp bot integration. This is useful when you want to stop receiving event notifications at a specific endpoint, for example, if you're decommissioning an integration, rotating endpoints, or cleaning up unused webhooks.

Practical Example:
If you previously set up a webhook to receive incoming message events and now wish to disable it (perhaps because the endpoint is no longer valid), you would use this operation to remove that webhook registration from the Quepasa API.

Properties

Below are the input properties relevant to the "Webhook - Remove" operation:

Display Name Type Meaning
Authentication options Select how to provide credentials: either manually ("Parameters") or via predefined n8n credentials ("Predefined Quepasa Credentials").
BaseUrl string The base URL of your Quepasa API instance. Required if using manual parameters.
Token string The authentication token for your WhatsApp bot. Required if using manual parameters.
Url string The webhook URL you wish to remove/unregister.
  • Authentication: Choose between entering credentials directly or using stored credentials.
  • BaseUrl: Only shown if "Parameters" authentication is selected.
  • Token: Only shown if "Parameters" authentication is selected.
  • Url: The target webhook endpoint to be removed.

Output

The output will be a JSON object (or array) summarizing the result of the webhook removal request. Typical fields may include:

{
  "success": true,
  "message": "Webhook removed successfully",
  // ...other response fields as provided by the Quepasa API
}
  • If the operation fails, the output may contain an error field with details about the failure.

Note: This node does not output binary data for this operation.

Dependencies

  • External Service: Requires access to a running Quepasa WhatsApp API server.
  • API Key/Token: You must provide a valid token for your WhatsApp bot, either directly or via n8n credentials.
  • n8n Configuration: If using "Predefined Quepasa Credentials," ensure these are configured in n8n under the appropriate credential type.

Troubleshooting

Common Issues:

  • Invalid Token or BaseUrl: If the token or base URL is incorrect, the node will fail to authenticate. Double-check your credentials.
  • Missing or Incorrect Webhook URL: If the URL to remove is not registered or is misspelled, the API may return an error indicating the webhook was not found.
  • Network Errors: Ensure n8n can reach your Quepasa API server (check firewalls, VPNs, etc.).

Error Messages:

  • "Authentication failed": Check your token and base URL.
  • "Webhook not found": Verify the URL matches an existing webhook registration.
  • "Request failed with status code XXX": Indicates an HTTP error; check the API server logs for more details.

Links and References

Discussion