DEMO ENVIRONMENT
API Gateway Controls
Manage API keys, OAuth scopes, and rate limits for external integrations
API Gateway Controls — PRO/Enterprise feature
Your current plan (LITE) does not include API Gateway Controls. Upgrade to PRO or Enterprise to enable full OAuth2/JWT management.
Event Ingestion Endpoint
Use this endpoint to push transaction events from external systems
POST
REST Ingest/functions/ingestEventPush individual events via REST API
POST
Webhook Receiver/functions/ingestEventReceive webhooks from upstream systems
POST
Risk Engine/functions/runRiskEngineOn-demand risk scoring with explanation
POST
SAR Export/functions/exportSARGenerate structured SAR reports
Example: Ingest event via REST
curl -X POST /functions/ingestEvent \
-H "Authorization: Bearer <your_api_key>" \
-H "Content-Type: application/json" \
-d '{
"source": "core_banking",
"subjectId": "CUST_12345",
"payload": {
"amount": 15000,
"velocity": 12,
"corridor": "SG-IN",
"channel": "wire"
}
}' API Keys (0)