Application Package Assigned
Retrieve the default assigned application package settings by Site ID.
The Site ID of the default assigned application package.
GET /api/AVD/DefaultSettings/MultiSession/AppPackageAssigned HTTP/1.1
Host:
Accept: */*
[
{
"version": "text",
"tagName": "text",
"tagId": 1,
"packageName": "text"
}
]
Add a default assigned application package.
The Site ID for which to add the assigned application package.
The application package name. This must be the actual application package name used in the RAS farm.
The version of the application package. This must be the actual application package version used in the RAS farm.
POST /api/AVD/DefaultSettings/MultiSession/AppPackageAssigned HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 39
{
"packageName": "text",
"version": "text"
}
No content
Update the default assigned application package settings with the specified Site ID.
The Site ID for which to modify the default assigned application package.
The name of the application package for which to change the version. This must be the actual application package name used in the RAS farm.
The new version of the application package. This must be the actual application package version used in the RAS farm.
PUT /api/AVD/DefaultSettings/MultiSession/AppPackageAssigned HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 39
{
"packageName": "text",
"version": "text"
}
No content
Remove the default assigned application package.
Site ID for which to remove the assigned application package.
The name of the application package for which to remove the assigned packaged application. This must be the actual application package name used in the RAS farm.
DELETE /api/AVD/DefaultSettings/MultiSession/AppPackageAssigned HTTP/1.1
Host:
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 22
{
"packageName": "text"
}
No content
Last updated
Was this helpful?