Connect Your AgentGeneric Webhook

Generic Webhook

Send events from any system that supports HTTP webhooks.

Endpoint

POST https://www.aigodfather.ai/api/v1/events

Headers

HeaderValue
AuthorizationBearer YOUR_API_KEY
Content-Typeapplication/json

Body Fields

FieldRequiredDescription
actionYesAction name
messageNoHuman-readable description
severityNolow / medium / high / critical
metadataNoAny key-value pairs
tagsNoArray of strings
user_idNoAssociated user
requires_approvalNoForce human approval

Works with any language, platform, or tool that can send HTTP POST requests.

bash
curl -X POST https:"tk-cmt">//www.aigodfather.ai/api/v1/events \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "action": "custom_webhook_event",
    "message": "Event from external system",
    "severity": "info",
    "metadata": {
      "source": "my-system",
      "version": "1.0"
    },
    "tags": ["webhook", "external"]
  }'