OS Filters

Deprecated

Update Client OS filter

put

Add an OS filter for the specified published resource. Deprecated path - Use Criteria section instead.

Path parameters
idinteger · int32required

ID of the published resource to be updated

Body

Add an OS filter for the specified published resource

osFilterEnabledboolean | nullableoptional

Whether to enable or disable the filter for the specified published resource.

allowClientChromeboolean | nullableoptional

Allow Chrome OS clients.

allowClientAndroidboolean | nullableoptional

Allow Android clients.

allowClientWebboolean | nullableoptional

Allow Web clients.

allowClientIOSboolean | nullableoptional

Allow IOS clients.

allowClientLinuxboolean | nullableoptional

Allow Linux clients.

allowClientMACboolean | nullableoptional

Allow Mac clients.

allowClientWindowsboolean | nullableoptional

Allow Windows clients.

allowClientWyseboolean | nullableoptional

Allow Wyse clients.

Responses
put
curl -L \
  --request PUT \
  --url '/api/PubItems/{id}/OSFilters' \
  --header 'Content-Type: application/json; api-version=1.0' \
  --data '{
    "osFilterEnabled": true,
    "allowClientChrome": true,
    "allowClientAndroid": true,
    "allowClientWeb": true,
    "allowClientIOS": true,
    "allowClientLinux": true,
    "allowClientMAC": true,
    "allowClientWindows": true,
    "allowClientWyse": true
  }'

No Content

Was this helpful?