Webhooks
Straqa supports event-driven workflows via webhooks.
How It Works:
-
You provide a webhook URL in your dashboard.
-
Straqa sends
POSTrequests with event data whenever key actions occur.
Sample Event Payload:
{
"event": "payment.success",
"data": {
"amount": 15000,
"reference": "ref_123",
"customer_email": "[email protected]"
},
"timestamp": "2025-04-16T10:00:00Z"
}
Available Events:
-
payment.success -
payment.failed -
order.created -
order.completed
Security: Verify the X-Straqa-Signature header to ensure event authenticity (details in webhook setup guide).
Let me know if you want to auto-generate this into your doc tool or need markdown/HTML format for direct pasting.