POST api/Admin/ScheduledEventDefaultProperties

Creates a default property for a scheduled event.

Request Information

URI Parameters

None.

Body Parameters

CreateScheduledEventDefaultPropertyRequest
NameDescriptionTypeAdditional information
ScheduledEventId

Scheduled event Id

integer

None.

CreatedBy

Created by

string

Required

Id

integer

None.

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:
{
  "ScheduledEventId": 1,
  "CreatedBy": "sample string 3",
  "Id": 4,
  "Key": "sample string 5",
  "Value": "sample string 6"
}

application/xml, text/xml

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

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.