Retrieving request statuses
Functionality available since platform version: 4.154.0
Client must be logged in for the functionality to work.
Availability of functionality depends on the license and may not be available in all deployments.
Using the function api.status.v1.getClientFormsBasicInfo() we can retrieve the list of application statuses for the logged-in user.
Usage example:
function callService(context) {
let value = api.status.v1.getClientFormsBasicInfo();
return [{'output': JSON.stringify(value)}];
}Example response:
[
{
"externalId": "ALB900000001162",
"formType": "300plus",
"dmsFormId": "68a71197f30eacb2e439fed4",
"formInstanceNumber": "ALB900000001162",
"status": {
"statusName": "WYSLANY_UPO",
"statusDescription": "The extension confirmation has been sent to the beneficiary.",
"date": "2025-08-21T12:40:42Z"
},
"creationDate": "2025-08-21T12:31:21Z"
},
{
"externalId": "ALB900000001170",
"formType": "300plus",
"dmsFormId": "68a716faf4abe6c0f0cffc12",
"formInstanceNumber": "ALB900000001170",
"status": {
"statusName": "BLAD_DANYCH",
"statusDescription": "The application contains errors other than xsd errors. E.g. invalid dictionary values, discrepancies between the data in the SOAP envelope and the data in the application, etc.",
"date": "2025-08-21T13:00:31Z"
},
"creationDate": "2025-08-21T12:55:15Z"
}
]Last updated
Was this helpful?
