POST api/emails/AddProgress

Request Information

URI Parameters

None.

Body Parameters

ProgressViewModel
NameDescriptionTypeAdditional information
ScheduleDate

date

None.

Planned

integer

None.

Actual

integer

None.

AccountId

integer

None.

CountSchedule

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ScheduleDate": "2026-01-02T17:51:54.2892633+00:00",
  "Planned": 2,
  "Actual": 3,
  "AccountId": 4,
  "CountSchedule": 5
}

application/xml, text/xml

Sample:
<ProgressViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WumeCore.ViewModels">
  <AccountId>4</AccountId>
  <Actual>3</Actual>
  <CountSchedule>5</CountSchedule>
  <Planned>2</Planned>
  <ScheduleDate>2026-01-02T17:51:54.2892633+00:00</ScheduleDate>
</ProgressViewModel>

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 'ProgressViewModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.