Application Package Assigned

Get

get

Retrieve the default assigned application package settings by Site ID.

Query parameters
siteIdinteger · int32Optional

The Site ID of the default assigned application package.

Responses
200

Success

application/json; api-version=1.0
get
/api/AVD/DefaultSettings/SingleSession/AppPackageAssigned
GET /api/AVD/DefaultSettings/SingleSession/AppPackageAssigned HTTP/1.1
Host: 
Accept: */*
[
  {
    "version": "text",
    "tagName": "text",
    "tagId": 1,
    "packageName": "text"
  }
]

Add

post

Add a default assigned application package.

Query parameters
siteIdinteger · int32Optional

The Site ID for which to add the assigned application package.

Body
packageNamestring | nullableRequired

The application package name. This must be the actual application package name used in the RAS farm.

versionstring | nullableRequired

The version of the application package. This must be the actual application package version used in the RAS farm.

Responses
post
/api/AVD/DefaultSettings/SingleSession/AppPackageAssigned
POST /api/AVD/DefaultSettings/SingleSession/AppPackageAssigned HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 39

{
  "packageName": "text",
  "version": "text"
}

No content

Update

put

Update the default assigned application package settings with the specified Site ID.

Query parameters
siteIdinteger · int32Optional

The Site ID for which to modify the default assigned application package.

Body
packageNamestring | nullableRequired

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.

versionstring | nullableRequired

The new version of the application package. This must be the actual application package version used in the RAS farm.

Responses
put
/api/AVD/DefaultSettings/SingleSession/AppPackageAssigned
PUT /api/AVD/DefaultSettings/SingleSession/AppPackageAssigned HTTP/1.1
Host: 
Content-Type: application/json; api-version=1.0
Accept: */*
Content-Length: 39

{
  "packageName": "text",
  "version": "text"
}

No content

Delete

delete

Remove the default assigned application package.

Query parameters
siteIdinteger · int32Optional

Site ID for which to remove the assigned application package.

Body
packageNamestring | nullableRequired

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.

Responses
delete
/api/AVD/DefaultSettings/SingleSession/AppPackageAssigned
DELETE /api/AVD/DefaultSettings/SingleSession/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?