Authentication
Bearer token for API authentication. Format: Bearer YOUR_API_KEY
Example: Trigger a webhook
curl -X POST 'https://api.example.com/api/triggers/webhook/flow_123' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"event":"order.created","data":{"orderId":"12345"}}'
{ "status": "accepted", "triggerId": "trig_abc" }
Never expose API keys in client-side code.