Custom Webhook
Learn how to configure your own webhook to receive notifications.
Send notifications as POST requests to a custom webhook endpoint you define. This provides the most flexibility for handling notifications within your own application or integrating with third-party services.
Configuration:
Channel: Set the
channel
field to"WEBHOOK"
.Delivery Location: Provide the full URL of your webhook endpoint in the
delivery_location
field.
Example Payload:
Webhook Payloads (Sent by Nodefy):
Nodefy will send a POST request to your webhook endpoint with a JSON payload containing the details of the triggered event.
Example address_activity payload:
Example graphql payload:
The exact payload structure for GraphQL events will depend on your specific GraphQL query. Here's an example for a simple ERC-20 Transfer
event query:
Last updated