Generic connector for sending webhooks and HTTP requests to any endpoint. Supports JSON, form, XML, GraphQL, HMAC signing, and batch.
| Action | Description | Parameters | Returns |
|---|---|---|---|
check_endpoint | Check if an endpoint is reachable | url | WebhookResponse |
send_batch ⚠ | Send a batch of webhooks | url, payloads | WebhookBatchResult |
send_form ⚠ | Send form-encoded data | url, data [headers] | WebhookResponse |
send_graphql ⚠ | Send a GraphQL query | url, query [variables, headers] | WebhookResponse |
send_json ⚠ | Send a JSON payload | url, data [headers] | WebhookResponse |
send_multipart ⚠ | Send a multipart form-data request | url, files [data] | WebhookResponse |
send_webhook ⚠ | Send a webhook request | url, payload [method, headers] | WebhookResponse |
send_with_api_key ⚠ | Send a webhook with API key authentication | url, payload, api_key [header_name] | WebhookResponse |
send_with_basic_auth ⚠ | Send a webhook with HTTP Basic authentication | url, payload, username, password | WebhookResponse |
send_with_hmac ⚠ | Send an HMAC-signed webhook | url, payload, secret [header_name] | WebhookResponse |
send_with_retry ⚠ | Send a webhook with automatic retries | url, payload [max_retries, delay] | WebhookResponse |
send_xml ⚠ | Send an XML payload | url, data [headers] | WebhookResponse |
Full schema explorer, code generation, and live API testing