TWAZI

Deliver Via Webhook

Sends data to an external system via webhook HTTP requests.

Inputs

  • Webhook URL required: The destination webhook URL
  • Payload required: Data to send in the webhook request
  • Method: HTTP method to use (default: POST)
  • Headers: Optional custom HTTP headers

Example

{
  "Webhook URL": "https://api.example.com/webhook",
  "Payload": {
    "event": "trade_executed",
    "data": {
      "symbol": "BTC/USD",
      "price": 45000,
      "quantity": 1.5
    }
  },
  "Method": "POST",
  "Headers": {
    "Authorization": "Bearer token123",
    "Content-Type": "application/json"
  }
}

Outputs

  • Status: HTTP status code of the webhook response
  • Response: Response data from the webhook endpoint
Deliver via webhook workflow example

On this page

Edit on GitHub