PUT api/EventProperties
Updates an existing eventproperty
Request Information
URI Parameters
None.
Body Parameters
UpdateEventPropertyRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
Required |
|
| Key | string |
Required Max length: 50 |
|
| Value | string |
Required Max length: 255 |
|
| ChangedBy | string |
Required Max length: 255 |
Remarks
None.
Example
None.
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Key": "sample string 2",
"Value": "sample string 3",
"ChangedBy": "sample string 4"
}
application/xml, text/xml
Sample:
<UpdateEventPropertyRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.Calendar.Service.DTO"> <ChangedBy>sample string 4</ChangedBy> <Id>1</Id> <Key>sample string 2</Key> <Value>sample string 3</Value> </UpdateEventPropertyRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Returns 204 No Content on success.
None.