GET api/Security/mobilestatus?mobileApplicationID={mobileApplicationID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| mobileApplicationID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
MobileApplicationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| MobileApplicationVersion | MobileApplicationVersion |
None. |
|
| IsSuccessful | boolean |
None. |
|
| ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"MobileApplicationVersion": {
"ID": 1,
"MobileApplicationID": 2,
"VersionNumber": 3,
"VersionDate": "2025-12-20T16:55:05.7884302Z",
"VersionName": "sample string 5",
"VersionNotes": "sample string 6",
"WebAPIVersion": "sample string 7",
"IsForceUpdate": true,
"AndroidInstallUrl": "sample string 9",
"iOSInstallUrl": "sample string 10",
"LastChanged": "2025-12-20T16:55:05.8040546Z"
},
"IsSuccessful": true,
"ErrorMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<MobileApplicationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models">
<ErrorMessage>sample string 2</ErrorMessage>
<IsSuccessful>true</IsSuccessful>
<MobileApplicationVersion>
<AndroidInstallUrl>sample string 9</AndroidInstallUrl>
<ID>1</ID>
<IsForceUpdate>true</IsForceUpdate>
<LastChanged>2025-12-20T16:55:05.8040546+00:00</LastChanged>
<MobileApplicationID>2</MobileApplicationID>
<VersionDate>2025-12-20T16:55:05.7884302+00:00</VersionDate>
<VersionName>sample string 5</VersionName>
<VersionNotes>sample string 6</VersionNotes>
<VersionNumber>3</VersionNumber>
<WebAPIVersion>sample string 7</WebAPIVersion>
<iOSInstallUrl>sample string 10</iOSInstallUrl>
</MobileApplicationVersion>
</MobileApplicationResponse>