Skip to content
API Gateway & Keys
Beyond Compliance
DEMO
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/ingestEvent

Push individual events via REST API

POST
Webhook Receiver
/functions/ingestEvent

Receive webhooks from upstream systems

POST
Risk Engine
/functions/runRiskEngine

On-demand risk scoring with explanation

POST
SAR Export
/functions/exportSAR

Generate 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)