API Parameters
/application/v1/create
Create a new application
- applicationId (ID of the application)
String (UUID)
- tenantId (Tenant to which the application belongs)
String
- caseId (Associated case ID)
String
- applicationType (Type of application)
String
- status (Current status of the application)
String
- createdDate (Date when the application was created)
Integer (Epoch)
/application/v1/update
Update an existing application
- applicationId (ID of the application)
String (UUID)
- tenantId (Tenant to which the application belongs)
String
- caseId (Associated case ID)
String
- applicationType (Type of application)
String
- status (Updated status of the application)
String
- createdDate (Updated creation date)
Integer (Epoch)
/application/v1/search
Search for applications based on criteria
- tenantId (Required, filter by tenant ID)
String
- applicationId (Optional, filter by application ID)
String
- caseId (Optional, filter by case ID)
String
- applicationType (Optional, filter by application type)
String
- status (Optional, filter by status)
String
/application/v1/exists
Check if an application exists
- applicationId (Required, application ID to check)
String
/application/v1/addComment
Add a comment to an application
- applicationId (ID of the application)
String
- comment (Text of the comment)
String
- createdBy (User ID who created the comment)
String
Last updated