POST api/event/putevent
Request Information
URI Parameters
None.
Body Parameters
PutEventRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ChapterId | integer |
None. |
|
| EventId | integer |
None. |
|
| Title | string |
None. |
|
| Description | string |
None. |
|
| HostBy | string |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| StartTime | time interval |
None. |
|
| EndTime | time interval |
None. |
|
| VirtualEvent | boolean |
None. |
|
| Hided | boolean |
None. |
|
| Location | string |
None. |
|
| UrlShortDescription | string |
None. |
|
| Speaker | string |
None. |
|
| VisibilityTypeId | byte |
None. |
|
| ConnectedChapterIds | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ChapterId": 1,
"EventId": 2,
"Title": "sample string 3",
"Description": "sample string 4",
"HostBy": "sample string 5",
"StartDate": "2026-01-12T01:32:50.3630505+00:00",
"EndDate": "2026-01-12T01:32:50.3630505+00:00",
"StartTime": "00:00:00.1234567",
"EndTime": "00:00:00.1234567",
"VirtualEvent": true,
"Hided": true,
"Location": "sample string 10",
"UrlShortDescription": "sample string 11",
"Speaker": "sample string 12",
"VisibilityTypeId": 64,
"ConnectedChapterIds": "sample string 14"
}
application/xml, text/xml
Sample:
<PutEventRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModelsLayer"> <ChapterId>1</ChapterId> <ConnectedChapterIds>sample string 14</ConnectedChapterIds> <Description>sample string 4</Description> <EndDate>2026-01-12T01:32:50.3630505+00:00</EndDate> <EndTime>PT0.1234567S</EndTime> <EventId>2</EventId> <Hided>true</Hided> <HostBy>sample string 5</HostBy> <Location>sample string 10</Location> <Speaker>sample string 12</Speaker> <StartDate>2026-01-12T01:32:50.3630505+00:00</StartDate> <StartTime>PT0.1234567S</StartTime> <Title>sample string 3</Title> <UrlShortDescription>sample string 11</UrlShortDescription> <VirtualEvent>true</VirtualEvent> <VisibilityTypeId>64</VisibilityTypeId> </PutEventRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.