getEnvironment (JavaScript API Reference) for Dynamics 365 Channel Integration Framework 2.0
Gets the current Unified Interface app and page details. The details include application ID(appid), pageType(pageType), record ID(id), organization geography (orgGeo) and session navigation type (navigationType).
Syntax
Microsoft.CIFramework.getEnvironment().then(successCallback, errorCallback);
Parameters
Name | Type | Required | Description |
---|---|---|---|
successCallback | Function | No | A function to call when the request for environment details is successful. |
errorCallback | Function | No | A function to call when the request for the environment fails. |
Return value
Returns a Promise object of type String with details of the current Unified Interface app and page.
Example
Microsoft.CIFramework.getEnvironment().then(
function (result) {
// result will have the information about environment.
console.log(result)
},
function (error) {
// code handling for promise failure
console.log(error)
});