POST api/Sync/ApkDownload
Request Information
URI Parameters
None.
Body Parameters
PL_ApkRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Client_ID | integer |
None. |
|
| App_Version | string |
None. |
|
| Hardware_Type_ID | integer |
None. |
|
| Packet_Number | integer |
None. |
|
| Total_Packet | integer |
None. |
|
| Session_Identifier | string |
None. |
|
| Length_Downloaded | integer |
None. |
|
| Is_Process_CheckSum | boolean |
None. |
|
| IS_DOWNLOAD_FULL_CONTENT_AT_ONCE | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Client_ID": 1,
"App_Version": "sample string 2",
"Hardware_Type_ID": 3,
"Packet_Number": 4,
"Total_Packet": 5,
"Session_Identifier": "sample string 6",
"Length_Downloaded": 7,
"Is_Process_CheckSum": true,
"IS_DOWNLOAD_FULL_CONTENT_AT_ONCE": true
}
application/xml, text/xml
Sample:
<PL_ApkRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ContentServer.Models"> <App_Version>sample string 2</App_Version> <Client_ID>1</Client_ID> <Hardware_Type_ID>3</Hardware_Type_ID> <IS_DOWNLOAD_FULL_CONTENT_AT_ONCE>true</IS_DOWNLOAD_FULL_CONTENT_AT_ONCE> <Is_Process_CheckSum>true</Is_Process_CheckSum> <Length_Downloaded>7</Length_Downloaded> <Packet_Number>4</Packet_Number> <Session_Identifier>sample string 6</Session_Identifier> <Total_Packet>5</Total_Packet> </PL_ApkRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |