GET api/v1/apps/downloaded

Get which apps have been downloaded.

Request Information

URI Parameters

None.

Body Parameters

GetAppsDownloadedBindingModel
NameDescriptionTypeAdditional information
Authentication

AuthenticationModel

Required

Request

GetAppsDownloadedRequestModel

Required

Request Formats

application/json, text/json

Sample:
{
  "Authentication": {
    "Id": "170200123 - sample only, user your ID",
    "Key": "467512342123 - sample only, user your Key"
  },
  "Request": {
    "Email": "larry@newmedia.com",
    "Application": "launchpad/workstation",
    "BeforeDate": "2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)",
    "AfterDate": "2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)"
  }
}

application/xml, text/xml

Sample:
<GetAppsDownloadedBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
  <Authentication>
    <Id>170200123 - sample only, user your ID</Id>
    <Key>467512342123 - sample only, user your Key</Key>
  </Authentication>
  <Request>
    <AfterDate>2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)</AfterDate>
    <Application>launchpad/workstation</Application>
    <BeforeDate>2025-12-04 06:57:36 (YYYY-MM-DD HH:MM:SS - UTC format)</BeforeDate>
    <Email>larry@newmedia.com</Email>
  </Request>
</GetAppsDownloadedBindingModel>

Response Information

Resource Description

AppsDownloadedOutgoingModel
NameDescriptionTypeAdditional information
Message

MessageModel

None.

Response

AppsDownloadedResponse

None.

Response Formats

application/json, text/json

Sample:
{
  "Message": {
    "Code": "sample string 1",
    "Description": "sample string 2"
  },
  "Response": {
    "Downloads": [
      {
        "Name": "sample string 1",
        "DownloadDate": "sample string 2"
      },
      {
        "Name": "sample string 1",
        "DownloadDate": "sample string 2"
      }
    ]
  }
}

application/xml, text/xml

Sample:
<AppsDownloadedOutgoingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Api.Models">
  <Message>
    <Code>sample string 1</Code>
    <Description>sample string 2</Description>
  </Message>
  <Response>
    <Downloads>
      <AppDownloadData>
        <DownloadDate>sample string 2</DownloadDate>
        <Name>sample string 1</Name>
      </AppDownloadData>
      <AppDownloadData>
        <DownloadDate>sample string 2</DownloadDate>
        <Name>sample string 1</Name>
      </AppDownloadData>
    </Downloads>
  </Response>
</AppsDownloadedOutgoingModel>