URL API AccessType parameter

The AccessType parameter specifies the public or private status of the cube view that you want to display.

This parameter is used in combination the Action parameter when you open a CubeViewer object.

Format

&AccessType=Value

Values

Value Description
Private Specifies that the cube view has a private status.
Public Specifies that the cube view has a public status.

Example

function loadCubeview() {
   cubeView = document.getElementById("cubeviewId");

   cubeView.src = baseUrl + "#Action=Open&Type=CubeViewer
    &Cube=plan_BudgetPlan&View=Budget Input Detailed
    &AccessType=Public
    &AdminHost=localhost&TM1Server=Planning Sample";
};