PUT api/MeetingTask?id={id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

MeetingTaskDTO
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

None.

Image

Collection of byte

None.

FilePath

string

None.

SystemUserID

integer

None.

MeetingID

integer

None.

Complete

boolean

None.

SystemUserFullName

string

None.

Date

date

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Name": "sample string 2",
  "Image": "QEA=",
  "FilePath": "sample string 3",
  "SystemUserID": 4,
  "MeetingID": 5,
  "Complete": true,
  "SystemUserFullName": "sample string 7",
  "Date": "2024-12-28T08:11:47.2239839+02:00"
}

application/xml, text/xml

Sample:
<MeetingTaskDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <Complete>true</Complete>
  <Date>2024-12-28T08:11:47.2239839+02:00</Date>
  <FilePath>sample string 3</FilePath>
  <ID>1</ID>
  <Image>QEA=</Image>
  <MeetingID>5</MeetingID>
  <Name>sample string 2</Name>
  <SystemUserFullName>sample string 7</SystemUserFullName>
  <SystemUserID>4</SystemUserID>
</MeetingTaskDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>