PUT conference/copenhagen

Request Information

URI Parameters

None.

Body Parameters

UpdateConferenceDTO
NameDescriptionTypeAdditional information
ConferenceId

integer

None.

Title

string

None.

Password

string

None.

IsPublic

boolean

None.

IsOpen

boolean

None.

StartDateTime

string

None.

EndDateTime

string

None.

Hidden

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "conferenceId": 1,
  "title": "sample string 2",
  "password": "sample string 3",
  "isPublic": true,
  "isOpen": true,
  "startDateTime": "sample string 6",
  "endDateTime": "sample string 7",
  "hidden": true
}

application/xml, text/xml

Sample:
<UpdateConferenceDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Falck.DTO.Conference">
  <ConferenceId>1</ConferenceId>
  <EndDateTime>sample string 7</EndDateTime>
  <Hidden>true</Hidden>
  <IsOpen>true</IsOpen>
  <IsPublic>true</IsPublic>
  <Password>sample string 3</Password>
  <StartDateTime>sample string 6</StartDateTime>
  <Title>sample string 2</Title>
</UpdateConferenceDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.