Get UI Plugin Permissions

Get UI Plugin Permissions

Returns information about NSXi platform features and operations. And their availability based on license, form factor and user's roles in the UI Plugin framework format

Request
URI
GET
https://{api_host}/napp/api/v1/platform/ui-plugin-permissions
COPY
Query Parameters
string
APP_NAME
Optional

Name of feature to return operation on.

APP_NAME example
INTELLIGENCE

Authentication
This operation uses the following authentication methods.
Responses
200

Obtained the NSXi platform UI features and permissions successfully.

Returns UIPluginPermissionsResult of type(s) application/json
{
    "results": [
        {
            "feature": "string",
            "permission": "string"
        }
    ]
}
results
Required

results


404

Backend microservices not found

Returns Error of type(s) application/json
{
    "code": 0,
    "message": "string"
}
integer As int32 As int32
code
Required

Error code refers to either HTTP status code OR a unique code identifying the internal error - which can be referenced in VMware documents for more information.

string
message
Required

Descriptive user understandable error message to help identify root cause of the error.


424

Backend microservices not connected or not responding

Returns Error of type(s) application/json
{
    "code": 0,
    "message": "string"
}
integer As int32 As int32
code
Required

Error code refers to either HTTP status code OR a unique code identifying the internal error - which can be referenced in VMware documents for more information.

string
message
Required

Descriptive user understandable error message to help identify root cause of the error.


500

unexpected error

Returns Error of type(s) application/json
{
    "code": 0,
    "message": "string"
}
integer As int32 As int32
code
Required

Error code refers to either HTTP status code OR a unique code identifying the internal error - which can be referenced in VMware documents for more information.

string
message
Required

Descriptive user understandable error message to help identify root cause of the error.


Deprecated
Availability
Deprecated in 4.2
Clusterapi Operations
GET
Get UI Plugin Permissions
Deprecated