Profile Container

Get

get

Retrieve the FSLogix Profile Containers Feature Site Settings.

Query parameters
siteIdinteger · int32Optional

The Site ID for which to retrieve the FSLogix Profile Containers Feature settings.

Responses
200
Success
application/json; api-version=1.0
get
GET /api/FSLogix/ProfileContainer HTTP/1.1
Host: 
Accept: */*
{
  "siteId": 1,
  "installType": [
    "0 = Manually",
    "1 = Online",
    "2 = NetworkDrive",
    "3 = UploadInstall"
  ],
  "installOnlineURL": "text",
  "networkDrivePath": "text",
  "installerFileName": "text",
  "replicate": true
}

Update

put

Update the FSLogix Profile Containers Feature Site Settings.

Query parameters
siteIdinteger · int32Optional

The Site ID for which to modify the FSLogix Profile Containers Feature settings.

Body

Update FSLogix feature settings in the RAS Site

installTypestring · enumOptional

Install Type values.

Possible values:
installOnlineURLstring | nullableOptional

Specifies the 'Install Online URL Online'.

networkDrivePathstring | nullableOptional

Specifies the 'Network Drive Path'.

installerFilePathstring | nullableOptional

Specifies the 'Installer File Path'.

replicateboolean | nullableOptional

Enable or disable replication of settings to other sites.

Responses
204
No Content
put
PUT /api/FSLogix/ProfileContainer HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 180

{
  "installType": [
    "0 = Manually",
    "1 = Online",
    "2 = NetworkDrive",
    "3 = UploadInstall"
  ],
  "installOnlineURL": "text",
  "networkDrivePath": "text",
  "installerFilePath": "text",
  "replicate": true
}

No content

Was this helpful?