PUT api/ClientTask/PutClientTask/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

ClientTaskModel
NameDescriptionTypeAdditional information
ID

integer

None.

ClientID

integer

None.

Description

string

None.

IsRead

boolean

None.

IsClientReported

boolean

None.

IsDeleted

boolean

None.

CreatedDate

date

None.

UpdatedDate

date

None.

CreatedID

integer

None.

UpdatedID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "ClientID": 1,
  "Description": "sample string 2",
  "IsRead": true,
  "IsClientReported": true,
  "IsDeleted": true,
  "CreatedDate": "2026-06-30T14:13:20.6327863+01:00",
  "UpdatedDate": "2026-06-30T14:13:20.6327863+01:00",
  "CreatedID": 1,
  "UpdatedID": 1
}

text/xml

Sample:
<ClientTaskModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Models">
  <ClientID>1</ClientID>
  <CreatedDate>2026-06-30T14:13:20.6327863+01:00</CreatedDate>
  <CreatedID>1</CreatedID>
  <Description>sample string 2</Description>
  <ID>1</ID>
  <IsClientReported>true</IsClientReported>
  <IsDeleted>true</IsDeleted>
  <IsRead>true</IsRead>
  <UpdatedDate>2026-06-30T14:13:20.6327863+01:00</UpdatedDate>
  <UpdatedID>1</UpdatedID>
</ClientTaskModel>

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

Response Information

Resource Description

None.