Platform Management
Get minimumOsVersion Information
This call returns readily understandable minimumOsVersion information for Android and iOS apps. The returned value of minimumOsVersion for iOS apps from the call, Get app data by id is not readily understandable, and the returned value for Android apps is always null.
Required Role
See Authentication for complete details on ensuring that the credentials you use for basic authentication belong to a user with the necessary role for this API call.
Required Role |
Any admin role |
HTTP method
GET
Request URI
/api/v2/platform/versions/{os}
Request parameters
Parameter |
Description |
Sample Value |
adminDeviceSpaceId |
Required Parameter Type: Query Data Type: Number Device space ID of the administrator. |
1 |
os |
Required Parameter Type: Path Data Type: String The operating system for which to get minimumOsVersion information. Can be one of the following values: •android •ios |
android |
Response fields
Field |
Description |
results |
Container for the results. |
name |
Readily understandable version name. |
id |
app ID. |
value |
Obfuscated or null version name as returned by the call, Get app data by id |
totalCount |
Total number of versions. |
resultCount |
Total number of versions retrieved. |
Sample Request
curl -X GET \
'https://[Ivanti EPMM]/api/v2/platform/versions/ios?adminDeviceSpaceId=1' \
Sample Response
{
"results": [
{
"name": "4.0",
"id": 7,
"value": "8A293"
}
],
"totalCount": 154,
"resultCount": 154
}