The Liquit.Catalog.Get function returns all information on an application in the user catalog. Whenever an application has been made available in the Catalog it will be available in the response of this function.
Request parameters
The following parameters are available for the API:
Name | Description | Value |
---|---|---|
id | The GUID needed to request the application | <GUID> |
reviews | If true, reviews will be included in the response (available for Application Workspace 3.6 and later) | <boolean> |
media | If true, media will be included in the response (available for Application Workspace 3.6 and later) | <boolean> |
faq | If true, the frequently asked questions will be included in the response (available for Application Workspace 3.6 and later) | <boolean |
Return parameters
The following properties are returned:
Name | Description | Value |
---|---|---|
active | Determines whether or not the application is active. If this is true, the application was already successfully requested. | <boolean> |
categories | Returns an array containing all categories associated with the application. | <array[]> |
icon | Returns the URL of the application icon. | <string> |
id | The GUID of the application. | <guid> |
name | The friendly name of the application. | <string> |
rating | The global rating of the application. | <int> |
status | The status of the application:
|
<string> |
Example
var id = '00000000-0000-0000-0000-000000000000';
// Catalog get
Liquit.Catalog.Get({
id:id,
media: true,
license: true,
reviews: true,
faq: true
}, function (fault, result) {
console.log(result)
});