Getting Application Details

AdminStudio 2023 | 25.0 | AdminStudio REST APIs

Edition:REST APIs are enabled with AdminStudio Enterprise Edition.

When you send this request with out parameters, it will return all the available packages in the Application Catalog.

Getting ApplicationDetails (with out parameters) API Information

Request Type

Description

API

http://localhost:8086/catalog/packages/

Method

GET

Parameters

Not Applicable.

Connection Info

Provides the connection information of the package as mentioned in Setting Up Connection to Run REST APIs 

Response

<response>

<HasFault>false</HasFault><headers><httpHeaders><Host>localhost:8086</Host><Connection>keep-alive</Connection><Accept>*/*</Accept><User-Agent>PostmanRuntime/7.26.10</User-Agent><Accept-Encoding>gzip, deflate, br</Accept-Encoding><Postman-Token>17353504-4185-4e23-81e7-d4df56512916</Postman-Token></httpHeaders><request></request></headers><summary /><data><data><PackageId>3</PackageId><ProductName>Picasa</ProductName><Manufacturer>Google Inc.</Manufacturer><Version>2.7.0</Version><PackageType>MSI</PackageType><ApplicationId>10</ApplicationId><PackageCatalogPath>Applications/WFM/Picasa</PackageCatalogPath></data><data><PackageId>4</PackageId><ProductName>Postman</ProductName><Manufacturer>Postman</Manufacturer><Version>8.0.6</Version><PackageType>EXE</PackageType><ApplicationId>11</ApplicationId><PackageCatalogPath>Applications/WFM/Postman</PackageCatalogPath></data><data><PackageId>55</PackageId><ProductName>Wireshark</ProductName><Manufacturer>Wireshark development team</Manufacturer><Version>3.0.0.0</Version><PackageType>MSIX</PackageType><ApplicationId>45</ApplicationId><PackageCatalogPath>Applications/Wireshark</PackageCatalogPath></data></data>

</response>

 

When you send this request with parameters, it will return the details of matching packages in the Application Catalog.

Getting Application Details API Information

Request Type

Description

API

http://localhost:8086/catalog/packages/?productname={xyz}&manufacturer={xyz}&version={0.0.0}

Method

GET

Parameters

List all parameters in the following format:

ProductName = ProductName of the Package in the Application Catalog
Manufacturer = Manufacturer of the Package in the Application Catalog
Version = Version of the Package in the Application Catalog

Connection Info

Provides the connection information of the package as mentioned in Setting Up Connection to Run REST APIs 

Response

Example: http://localhost:8086/catalog/packages/?ProductName=Picasa&Manufacturer=Google Inc.&Version=2.7.0

<response>

<HasFault>false</HasFault><headers><httpHeaders><Host>localhost:8086</Host><Connection>keep-alive</Connection><Accept>*/*</Accept><User-Agent>PostmanRuntime/7.26.10</User-Agent><Accept-Encoding>gzip, deflate, br</Accept-Encoding><Postman-Token>631d242d-9a95-4ae8-bf9e-e05328d66f3e</Postman-Token></httpHeaders><request></request></headers><summary /><data><data><PackageId>3</PackageId><ProductName>Picasa</ProductName><Manufacturer>Google Inc.</Manufacturer><Version>2.7.0</Version><PackageType>MSI</PackageType><ApplicationId>10</ApplicationId><PackageCatalogPath>Applications/WFM/Picasa</PackageCatalogPath></data></data>

</response>