Get Applications
Table of Contents
Overview
This JS API task fetches the meta information of all the applications that the requesting user has access to. This information includes an application's name, creation date, workspace, link name, and so on.
This V2 task is based on the Get Applications REST API V2.1. Learn more about the application's category value in the response
Request Details
Syntax
ZOHO.CREATOR.META.getApplications().then(function(response){
//callback block
});
Possible Errors
Refer to this page for the complete list of error codes and messages.
Sample Input
CopiedZOHO.CREATOR.META.getApplications().then(function (response) {
console.log(response.applications);
});
Sample Response
Copiedresponse = {
"code": 3000,
"applications": [
{
"application_name": "Library Management",
"date_format": "dd-MMM-yyyy",
"creation_date": "31-Jan-2024 20:30:20",
"link_name": "librarymanagement",
"category": 1,
"time_zone": "Asia/Kolkata",
"created_by": "zylker"
"workspace_name": "zylker"
}
]
}