POST saveForgeDownloadDetails

Request Information

URI Parameters

None.

Body Parameters

DownloadDetailsModel
NameDescriptionTypeAdditional information
projectId

integer

None.

projectName

string

None.

id

string

None.

status

string

None.

reportUrl

string

None.

stats

DownloadStatsModel

None.

Request Formats

application/json, text/json

Sample:
{
  "projectId": 1,
  "projectName": "sample string 2",
  "id": "sample string 3",
  "status": "sample string 4",
  "reportUrl": "sample string 5",
  "stats": {
    "timeQueued": "sample string 1",
    "timeDownloadStarted": "sample string 2",
    "timeInstructionsStarted": "sample string 3",
    "timeInstructionsEnded": "sample string 4",
    "timeUploadEnded": "sample string 5",
    "timeFinished": "sample string 6",
    "bytesDownloaded": 7,
    "bytesUploaded": 8
  }
}

application/xml, text/xml

Sample:
<DownloadDetailsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AbbApi.Models">
  <id>sample string 3</id>
  <projectId>1</projectId>
  <projectName>sample string 2</projectName>
  <reportUrl>sample string 5</reportUrl>
  <stats>
    <bytesDownloaded>7</bytesDownloaded>
    <bytesUploaded>8</bytesUploaded>
    <timeDownloadStarted>sample string 2</timeDownloadStarted>
    <timeFinished>sample string 6</timeFinished>
    <timeInstructionsEnded>sample string 4</timeInstructionsEnded>
    <timeInstructionsStarted>sample string 3</timeInstructionsStarted>
    <timeQueued>sample string 1</timeQueued>
    <timeUploadEnded>sample string 5</timeUploadEnded>
  </stats>
  <status>sample string 4</status>
</DownloadDetailsModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'DownloadDetailsModel'.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.