Application Packages

Get

get

Retrieve application package settings.

Query parameters
siteIdinteger · int32Optional

The Site ID for which to retrieve the application package settings. (optional)

Responses
200
Success
application/json; api-version=1.0
get
GET /api/AppPackageSettings HTTP/1.1
Host: 
Accept: */*
{
  "siteId": 1,
  "enabled": true,
  "tags": [
    {
      "id": 1,
      "name": "text"
    }
  ],
  "provisionPackageCertificatesAutomatically": true
}

Update

put

Modify application package settings.

Query parameters
siteIdinteger · int32Optional

The Site ID for which to modify the application package settings. (optional).

Body

Update the Application Package Settings

enabledboolean | nullableOptional

Enable or disable the application packages.

provisionPackageCertificatesAutomaticallyboolean | nullableOptional

Enable or Disable automatic provision of application package certificates.

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

{
  "enabled": true,
  "provisionPackageCertificatesAutomatically": true
}

No content

Was this helpful?