POST Task/TaskProgressInsert

Request Information

URI Parameters

None.

Body Parameters

TaskProgressDto
NameDescriptionTypeAdditional information
Id

integer

None.

TaskAssignId

integer

None.

UserId

integer

None.

Progress

string

None.

Date

date

None.

Comment

string

None.

isactive

boolean

None.

Lat

string

None.

Lang

string

None.

AttributesValues

string

None.

Attachments

Collection of AttachmentsDto

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "TaskAssignId": 2,
  "UserId": 3,
  "Progress": "sample string 4",
  "Date": "2026-09-23T18:32:36.2161155+05:30",
  "Comment": "sample string 6",
  "isactive": true,
  "Lat": "sample string 8",
  "Lang": "sample string 9",
  "AttributesValues": "sample string 10",
  "Attachments": [
    {
      "ImagePath": "sample string 1",
      "DownloadPath": "sample string 2",
      "DocumentId": 3
    },
    {
      "ImagePath": "sample string 1",
      "DownloadPath": "sample string 2",
      "DocumentId": 3
    }
  ]
}

application/xml, text/xml

Sample:
<TaskProgressDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tracking.Entity">
  <Attachments>
    <AttachmentsDto>
      <DocumentId>3</DocumentId>
      <DownloadPath>sample string 2</DownloadPath>
      <ImagePath>sample string 1</ImagePath>
    </AttachmentsDto>
    <AttachmentsDto>
      <DocumentId>3</DocumentId>
      <DownloadPath>sample string 2</DownloadPath>
      <ImagePath>sample string 1</ImagePath>
    </AttachmentsDto>
  </Attachments>
  <AttributesValues>sample string 10</AttributesValues>
  <Comment>sample string 6</Comment>
  <Date>2026-09-23T18:32:36.2161155+05:30</Date>
  <Id>1</Id>
  <Lang>sample string 9</Lang>
  <Lat>sample string 8</Lat>
  <Progress>sample string 4</Progress>
  <TaskAssignId>2</TaskAssignId>
  <UserId>3</UserId>
  <isactive>true</isactive>
</TaskProgressDto>

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

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.