Custom Webhook
Learn how to configure your own webhook to receive notifications.
Configuration:
Example Payload:
{
"channel": "WEBHOOK",
"delivery_location": "https://your-app.com/webhook-endpoint"
}Webhook Payloads (Sent by Nodefy):
Example address_activity payload:
{
"webhookId": "wh_123abc", // The ID of the triggered webhook
"external_user_id": "user123", // The ID of the user to notify
"createdAt": "2024-01-01T12:00:00Z",
"type": "ADDRESS_ACTIVITY",
"event": {
"network": "ETH_MAINNET",
"activity": [
{
"hash": "0x987...xyz",
"fromAddress": "0x678...ghi",
"toAddress": "0x123...abc",
"asset": "ETH",
"value": "0.5",
"category": "external",
"blockNum": "17000000"
}
]
}
}Example graphql payload:
Last updated