Enterprise Get Enterprise Operator Configuration

Enterprise Get Enterprise Operator Configuration

Fetch the Operator Profile assigned to the target Enterprise, with optional module details.

Privileges required:

READ OPERATOR_PROFILE

Request
URI
POST
https://{api_host}/portal/rest/enterprise/getEnterpriseOperatorConfiguration
COPY
Request Body

Show optional properties

{
    "enterpriseId": 0
}
{
    "enterpriseId": 0,
    "with": "string",
    "noData": false
}
integer
enterpriseId
Required

enterpriseId

string
with
Optional

with

boolean
noData
Optional

Option to selectively omit configuration module data from the response (applicable only when the with: "modules" option is specified)

Responses
200

Request was successfully processed

This response body class contains all of the following: Inlineenterprise_get_enterprise_operator_configuration_result0
{
    "configurationType": "string",
    "created": "string",
    "description": "string",
    "edgeCount": 0,
    "effective": "string",
    "id": 0,
    "logicalId": "string",
    "modified": "string",
    "modules": [
        {
            "created": "string",
            "effective": "string",
            "modified": "string",
            "id": 0,
            "name": "string",
            "type": "string",
            "description": "string",
            "configurationId": 0,
            "data": {},
            "schemaVersion": "string",
            "version": "string",
            "metadata": {},
            "refs": {}
        }
    ],
    "name": "string",
    "schemaVersion": "string",
    "version": "string",
    "isStaging": 0
}

400
Returns generic_400 of type(s) application/json
Operation doesn't return any data structure

500
Returns generic_500 of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"enterpriseId:"integer"}' https://{api_host}/portal/rest/enterprise/getEnterpriseOperatorConfiguration