Rimo3 API - List Applications

Step-by-step guide to list applications in the Workspace360 tenant or find a specific application with a filter.

Identify the Application ID

To track an application progress through the pipeline, you must first obtain the assigned Application ID when the application has completed the upload.

To achieve this, you can list the applications currently onboarded to your Rimo3 tenant to locate an application you previously uploaded.

The script below references variables previously created in the following article.

$GetAppsHeader = @{
    Accept = "application/json"
    Authorization = "Bearer $token"
    "Content-Type" = "application/x-www-form-urlencoded"
    "Cache-control" = "no-cache"
}

$GetAppsParameters = @{
    Method = "GET"
    Uri = "$($server_uri)/api/v2/application-packages"
    Headers = $GetAppsHeader
}

$ListAppsResponse = Invoke-RestMethod @GetAppsParameters 
$ListAppsResponse

This will output all application packages currently onboarded to the Rimo3 tenant.

To narrow these results down to identify a specific Application ID of an application you have previously uploaded, you can use the following command to filter the results on the filename.

#filter results on known fliename
$ListAppsResponse | where {$_.fileName -like "7z2301*"} 

 

Something missing from this page or want to give feedback?