Power Permission

Get

get

Retrieve the Power Permissions of an Admin Account by ID.

Path parameters
adminIdinteger · int32Required

Admin Account ID

Responses
200
Success
application/json; api-version=1.0
get
GET /api/AdminAccount/{adminId}/PowerPermission HTTP/1.1
Host: 
Accept: */*
{
  "adminId": 1,
  "allowSiteChanges": true,
  "allowConnectionChanges": true,
  "allowSessionManagement": true,
  "allowDeviceManagementChanges": true,
  "allowViewingReportingInfo": true,
  "allowViewingLicenseInfo": true,
  "allowViewingSiteInfo": true,
  "allowPublishingChanges": true,
  "allowPolicyChanges": true,
  "allowViewingPolicyInfo": true,
  "allowAllSites": true,
  "allowInSiteIds": [
    1
  ]
}

Update

put

Update a Power Permission of an Admin Account.

Path parameters
adminIdinteger · int32Required

Admin Account ID

Body

Update RAS power administrator permissions

allowSiteChangesboolean | nullableOptional

Enable or disable the "Allow Site changes" option.

allowPublishingChangesboolean | nullableOptional

Enable or disable the "Allow Publishing changes" option.

allowConnectionChangesboolean | nullableOptional

Enable or disable the "Allow Connection changes" option.

allowViewingReportingInfoboolean | nullableOptional

Enable or disable the "Allow viewing of RAS Reporting" option.

allowViewingLicenseInfoboolean | nullableOptional

Enable or disable the "Allow viewing of License Information" option.

allowViewingSiteInfoboolean | nullableOptional

Enable or disable the "Allow viewing of Site Information" option.

allowViewingPolicyInfoboolean | nullableOptional

Enable or disable the "Allow viewing of Policy Information" option.

allowSessionManagementboolean | nullableOptional

Enable or disable the "Allow Session Management" option.

allowDeviceManagementChangesboolean | nullableOptional

Enable or disable the "Allow Device Management changes" option.

allowPolicyChangesboolean | nullableOptional

Enable or disable the "Allow Policy changes" option.

allowAllSitesboolean | nullableOptional

Enable or disable the "All Sites" option. If enabled, the administrator can manage all sites in the farm. Otherwise, sites can be specified individually.

allowInSiteIdsinteger · int32[] | nullableOptional

A list of site ids (an integer array) which the administrator should be allowed to manage.

Responses
204
No Content
put
PUT /api/AdminAccount/{adminId}/PowerPermission HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 341

{
  "allowSiteChanges": true,
  "allowPublishingChanges": true,
  "allowConnectionChanges": true,
  "allowViewingReportingInfo": true,
  "allowViewingLicenseInfo": true,
  "allowViewingSiteInfo": true,
  "allowViewingPolicyInfo": true,
  "allowSessionManagement": true,
  "allowDeviceManagementChanges": true,
  "allowPolicyChanges": true,
  "allowAllSites": true,
  "allowInSiteIds": [
    1
  ]
}

No content

Last updated

Was this helpful?