POST Api/DashboardDetails/FetchDownloadAndUploadCount

Request Information

URI Parameters

None.

Body Parameters

FetchDownloadandUploadCount
NameDescriptionTypeAdditional information
ReportTime

string

None.

ActionPerformed

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ReportTime": "sample string 1",
  "ActionPerformed": "sample string 2"
}

application/xml, text/xml

Sample:
<FetchDownloadandUploadCount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DevelAPI.Models">
  <ActionPerformed>sample string 2</ActionPerformed>
  <ReportTime>sample string 1</ReportTime>
</FetchDownloadandUploadCount>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

FetchDownloadUploadData
NameDescriptionTypeAdditional information
name

string

None.

series

Collection of DownloadUploadTotal

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "name": "sample string 1",
    "series": [
      {
        "name": "sample string 1",
        "value": 2.1
      },
      {
        "name": "sample string 1",
        "value": 2.1
      }
    ]
  }
]

application/xml, text/xml

Sample:
<FetchDownloadUploadData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DevelAPI.Models">
  <name>sample string 1</name>
  <series>
    <DownloadUploadTotal>
      <name>sample string 1</name>
      <value>2.1</value>
    </DownloadUploadTotal>
    <DownloadUploadTotal>
      <name>sample string 1</name>
      <value>2.1</value>
    </DownloadUploadTotal>
  </series>
</FetchDownloadUploadData>