GET api/Security/mobilestatus?mobileApplicationID={mobileApplicationID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
mobileApplicationID

integer

Required

Body Parameters

None.

Response Information

Resource Description

MobileApplicationResponse
NameDescriptionTypeAdditional 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": "2024-05-18T08:05:40.6687846Z",
    "VersionName": "sample string 5",
    "VersionNotes": "sample string 6",
    "WebAPIVersion": "sample string 7",
    "IsForceUpdate": true,
    "AndroidInstallUrl": "sample string 9",
    "iOSInstallUrl": "sample string 10",
    "LastChanged": "2024-05-18T08:05:40.6687846Z"
  },
  "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>2024-05-18T08:05:40.6687846+00:00</LastChanged>
    <MobileApplicationID>2</MobileApplicationID>
    <VersionDate>2024-05-18T08:05:40.6687846+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>