POST device/contentDownload

Request Information

URI Parameters

None.

Body Parameters

ContentDownload
NameDescriptionTypeAdditional information
UserCode

string

None.

ProductContentCode

string

None.

DeviceCode

string

None.

AppAction

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "UserCode": "sample string 1",
  "ProductContentCode": "sample string 2",
  "DeviceCode": "sample string 3",
  "AppAction": 4
}

application/xml, text/xml

Sample:
<ContentDownload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities">
  <AppAction>4</AppAction>
  <DeviceCode>sample string 3</DeviceCode>
  <ProductContentCode>sample string 2</ProductContentCode>
  <UserCode>sample string 1</UserCode>
</ContentDownload>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DownloadResponse
NameDescriptionTypeAdditional information
isSuccess

boolean

None.

AllowDownload

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "isSuccess": true,
  "AllowDownload": true,
  "Message": "sample string 3"
}

application/xml, text/xml

Sample:
<DownloadResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities">
  <AllowDownload>true</AllowDownload>
  <Message>sample string 3</Message>
  <isSuccess>true</isSuccess>
</DownloadResponse>