API Parameters
/case/v1/_create
Create a new case in the registry
- tenantId (Tenant ID where the case is created)
String
- caseCategory (Category of the case)
String
- caseTitle (Title of the case)
String
- caseDescription (Description of the case)
String
- fillingNumber (Number assigned when the case is filed)
String
- filingDate (Date when the case was filed)
Integer (Epoch)
/case/v1/_update
Update an existing case
- tenantId (Tenant ID of the case)
String
- caseId (ID of the case to be updated)
String
- caseCategory (Updated case category)
String
- status (Updated status of the case)
String
- caseDescription (Updated case description)
String
/case/v1/_search
Search for cases based on criteria
- tenantId (Required, tenant ID for filtering)
String
- caseId (Optional, filter by case ID)
String
- status (Optional, filter by case status)
String
- fillingDate (Optional, filter by filing date)
Integer (Epoch)
/case/v1/_verify
Verify the legitimacy of a case
- caseId (Required, ID of the case to verify)
String
- status (Optional, filter by verification status)
String
/case/v1/exists
Check if a case exists
- caseId (Required, ID of the case to check)
String
/case/v1/_addWitness
Add a witness to a case
- caseId (ID of the case)
String
- witnessDetails (Details of the witness)
Object
/case/v1/_updateWitness
Update witness information in a case
- caseId (ID of the case)
String
- witnessId (ID of the witness)
String
- witnessDetails (Updated details of the witness)
Object
/case/v1/_searchWitness
Search for witnesses in a case
- caseId (Required, ID of the case to search witnesses in)
String
- witnessName (Optional, search by witness name)
String
Last updated