Standard Chartered Open Banking โ Business Central Integration
โ Service OnlineHealth check endpoint - verify the service is running
Test Business Central connection status
Main webhook endpoint - receives payment notifications from Standard Chartered
{
"EventId": "evt-12345-abcde",
"EventType": "payment.completed",
"Timestamp": "2026-02-26T10:30:00Z",
"Data": {
"TransactionId": "TXN-2026-001",
"Amount": 15000.00,
"Currency": "KES",
"Status": "completed",
"Narration": "Payment for Invoice INV-001"
}
}
# Health Check
curl -X GET https://your-domain/api/fairlane/health
# Send Test Webhook
curl -X POST https://your-domain/api/fairlane/webhook \
-H "Content-Type: application/json" \
-d '{
"EventId": "test-001",
"EventType": "payment.completed",
"Timestamp": "2026-02-26T10:30:00Z",
"Data": {
"TransactionId": "TXN-TEST-001",
"Amount": 5000.00,
"Currency": "KES",
"Status": "completed",
"Narration": "Test payment"
}
}'