The server is running. Processes external tasks from workflow engine and integrates with IBM DB2 and watsonx Orchestrate for intelligent claims processing.
Developer Resources
Liveness probe endpoint — always open, no authentication required. Returns server status and timestamp.
View health →Main endpoint for processing external tasks from the workflow engine. Handles various task types dynamically.
View details →Process specific task types directly. Supports client lookup, claim lookup, policy checks, settlements, and more.
View task types →API Reference
| Method | Path | Description |
|---|---|---|
| GET | /health | Health check endpoint. Returns {"status":"healthy","timestamp":"..."} |
| POST | /process-task | Process external tasks from workflow engine. Requires task payload with process type and variables. |
| POST | /process-typed-task/client-lookup | Look up client information from DB2 based on email address. |
| POST | /process-typed-task/claim-lookup | Check if client has open claims in the system. |
| POST | /process-typed-task/policy-lookup | Verify policy coverage using watsonx Orchestrate AI analysis. |
| POST | /process-typed-task/create-new-claim | Create a new insurance claim record. |
| POST | /process-typed-task/extract-documents | Extract and process claim documents. |
| POST | /process-typed-task/check-completeness | Verify claim completeness and required documentation. |
| POST | /process-typed-task/settle-for-an-amount | Calculate settlement amount using AI-powered analysis. |
| POST | /process-typed-task/update-claim-status | Update claim status in the database. |
| POST | /process-typed-task/respond | Generate and send response email using watsonx Orchestrate. |