I’m doing the Alpha Masterclass now and I’ve created the case instance via endpoint and I don’t see case in the Inbox.
POST https://sandbox.neutrinos-apps.com/caseservice/case/instance/create
{
"caseType": "alpha_training",
"caseData": {
"CustomerInfo": {
"firstName": "Gowtham",
"lastName": "Balram",
"email": "bartlomiej.pasik@decerto.com",
"address": "HSR Layout",
"dob": "1990-08-12",
"age": 34,
"policyId": "POL-20241101-001",
"driverDOB": "1988-05-10",
"driverExperience": "10"
},
"PolicyDetails": {
"inceptionDate": "2024-12-01",
"customerId": "CUST-001",
"nomineeId": "NOM-001",
"sumAssured": 1200000,
"policyType": "Motor Comprehensive",
"policyTerm": "1 Year",
"premiumAmount": 25000,
"endDate": "2025-11-30",
"businessChannel": "300001",
"make": "Toyota",
"model": "Corolla",
"vehicleNumber": "KA05AB1234",
"vehicleProductionYear": 2020,
"deductible": 1000,
"coverageTerm": "1 Year"
},
"NomineeInfo": {
"firstName": "Neelapareddy",
"lastName": "Rao",
"relationWithCustomer": "Spouse",
"referenceToPolicy": "POL-20241101-001",
"dob": "1992-02-15",
"phoneNumber": 9876543210,
"address": "HSR Layout, Bangalore"
},
"DecisionStatus": {
"policyId": "POL-20241101-001",
"underwriting_approved": null,
"underwriting_comments": "",
"approval_approved": null,
"approval_comments": "",
"decision_date": ""
},
"EmailInfo": {
"recipient": "bartlomiej.pasik@decerto.com",
"subject": "",
"message": ""
},
"features": [
{ "text": "Basic Life Insurance", "included": true },
{ "text": "TeleMedicine", "included": true },
{ "text": "Digital Budgeting App", "included": true },
{ "text": "Short Term Disability Cover", "included": true },
{ "text": "Extended Life Cover", "included": true },
{ "text": "Priority Support", "included": true }
]
},
"wfData": {
"stp_rules_request": {
"version": "1.0.13",
"workflowId": "981e0eb6-6d50-4029-8d9a-9b7e45a9d9a4",
"inputObj": {
"vehicleProductionYear": 2020,
"businessChannel": "123",
"make": "BMW",
"model": "730",
"deductible": 5000,
"driverExperience": "10",
"driverDOB": "1988-05-10"
},
"subFlowIDs": []
}
}
}
Got response
{
"success": true,
"message": "Case created successfully",
"cid": 9828
}
Case info from /caseservice/case/instance/fetch
[
{
"caseInstance": {
"cid": 9828,
"piid": 1166473,
"source": "-",
"description": "-",
"created_at": "2025-11-07T10:27:37.179Z",
"updated_at": "2025-11-07T10:27:37.611Z",
"case_last_updated_at": "2025-11-07T10:27:37.569Z",
"status": "New Case",
"cdid": 10,
"processSLA": "-",
"caseDisabled": false,
"caseData": {
"cidid": 9828,
"data": {
"features": [
{
"text": "Basic Life Insurance",
"included": true
},
{
"text": "TeleMedicine",
"included": true
},
{
"text": "Digital Budgeting App",
"included": true
},
{
"text": "Short Term Disability Cover",
"included": true
},
{
"text": "Extended Life Cover",
"included": true
},
{
"text": "Priority Support",
"included": true
}
],
"EmailInfo": {
"message": "",
"subject": "",
"recipient": "bartlomiej.pasik@decerto.com"
},
"NomineeInfo": {
"dob": "1992-02-15",
"address": "HSR Layout, Bangalore",
"lastName": "Rao",
"firstName": "Neelapareddy",
"phoneNumber": 9876543210,
"referenceToPolicy": "POL-20241101-001",
"relationWithCustomer": "Spouse"
},
"CustomerInfo": {
"age": 34,
"dob": "1990-08-12",
"email": "bartlomiej.pasik@decerto.com",
"address": "HSR Layout",
"lastName": "Balram",
"policyId": "POL-20241101-001",
"driverDOB": "1988-05-10",
"firstName": "Gowtham",
"driverExperience": "10"
},
"PolicyDetails": {
"make": "Toyota",
"model": "Corolla",
"endDate": "2025-11-30",
"nomineeId": "NOM-001",
"customerId": "CUST-001",
"deductible": 1000,
"policyTerm": "1 Year",
"policyType": "Motor Comprehensive",
"sumAssured": 1200000,
"coverageTerm": "1 Year",
"inceptionDate": "2024-12-01",
"premiumAmount": 25000,
"vehicleNumber": "KA05AB1234",
"businessChannel": "300001",
"vehicleProductionYear": 2020
},
"DecisionStatus": {
"policyId": "POL-20241101-001",
"decision_date": "",
"approval_approved": null,
"approval_comments": "",
"underwriting_approved": null,
"underwriting_comments": ""
}
},
"created_at": "2025-11-07T10:27:37.179Z",
"updated_at": "2025-11-07T10:27:37.179Z"
},
"signal": []
},
"taskInstance": {
"taskId": 7463,
"taskName": "Admin",
"taskStatus": "READY",
"currentProcessInstanceId": 1166475,
"parentProcessInstanceId": 1166473,
"metadata": {
"containerId": "alpha_training_1.0.0-SNAPSHOT",
"taskSubject": "",
"taskDescription": "",
"taskOwner": null,
"createdOn": "2025-11-07T10:27:38.137Z",
"potOwners": "krisv",
"taskDelegatedTime": null,
"groups": [
{
"name": "Admin"
}
]
}
}
}
]
Is it because I haven’t defined the team and the task is routed to the Admin and I’m not the admin?




