Monetizze Trigger icon

Monetizze Trigger

Monetizze Webhook Trigger

Overview

The Monetizze Trigger node is designed to receive and process webhook events from Monetizze, a digital product sales platform. It acts as a trigger in n8n workflows, activating when specific events occur in your Monetizze account (such as purchases, subscription changes, or payment actions). This node is particularly useful for automating tasks like updating CRMs, sending notifications, or managing user access based on real-time Monetizze events.

Practical examples:

  • Automatically send a welcome email when a purchase is approved.
  • Notify your team via Slack when a chargeback occurs.
  • Update a Google Sheet when a boleto (bank slip) is generated.
  • Cancel user access if a subscription is canceled.

Properties

Name Type Meaning
Event options The type of Monetizze event that will trigger the workflow. Options include various transaction and subscription events such as "Assinatura Atrasada" (Late Subscription), "Compra Aprovada" (Purchase Approved), etc.

Output

The node outputs a JSON object with the following structure:

{
  "originalData": { /* The full body of the incoming Monetizze webhook */ },
  "event": "..." // The internal event type detected by the node (e.g., "postback.compra.aprovada")
}
  • originalData: Contains all data sent by Monetizze in the webhook payload.
  • event: The standardized event type as determined by the node logic.

Note: This node does not output binary data.

Dependencies

  • External Service: Requires a valid Monetizze API token (configured as monetizzeApi credentials in n8n).
  • n8n Configuration: The webhook endpoint must be accessible from Monetizze's servers. Ensure your n8n instance is publicly reachable or use n8n's tunnel feature during development.

Troubleshooting

Common Issues:

  • Invalid signature:
    If the webhook request's chave_unica does not match the configured Monetizze API token, the node will respond with "Invalid signature" and not trigger the workflow.
    Resolution: Double-check your Monetizze API token in the n8n credentials and ensure it matches what Monetizze sends.

  • Invalid event:
    If the incoming event does not match the selected "Event" property (and is not set to "Todos"), the node will respond with "Invalid event" and not trigger the workflow.
    Resolution: Make sure you have selected the correct event type in the node configuration, or use "Todos" to accept all events.

  • Webhook not triggered:
    If no executions appear, verify that:

    • The webhook URL is correctly registered in Monetizze.
    • Your n8n instance is running and accessible.
    • You are using the correct mode (test/production) as per your workflow status.

Links and References

Discussion