The Liquit.Catalog.Request function is used to request applications from catalog. All applicable applications return a callback reporting on the status of the application, this can be either the application has been requested successfully or indicate approval from an approver is equired.
Return parameters
The status callback property can be as follows:
Name | Description | Value |
---|---|---|
Null | The application has been requested successfully and is assigned to the users’ workspace | Null |
Pending | The application needs approval before being assigned to the users workspace. | String |
Liquit.Catalog.Request(id, function (e) {
// e = null
// the requested application has been approved and the application becomes available in the workspace right away
// e = “Pending”
// The requested application needs approval before becoming available in the workspace.
});