PUT api/Admin/DayScheduleDefaultProperties

Updates a default property for a day schedule

Request Information

URI Parameters

None.

Body Parameters

UpdateDayScheduleDefaultPropertyRequest
NameDescriptionTypeAdditional information
Id

Id of Day schedule default property to change

integer

None.

ChangedBy

Changed by

string

Required

Key

Property Key

string

Required

Max length: 50

Value

Property value

string

Max length: 255

Remarks

None.

Example

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "ChangedBy": "sample string 3",
  "Key": "sample string 4",
  "Value": "sample string 5"
}

application/xml, text/xml

Sample:
<UpdateDayScheduleDefaultPropertyRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.Calendar.Service.DTO">
  <Id>0</Id>
  <Key>sample string 4</Key>
  <Value>sample string 5</Value>
  <ChangedBy>sample string 3</ChangedBy>
  <Id>1</Id>
</UpdateDayScheduleDefaultPropertyRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Returns 204 No Content if successfully updated

None.