POST api/event/postevent
Request Information
URI Parameters
None.
Body Parameters
PostEventRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ChapterId | 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,
"Title": "sample string 2",
"Description": "sample string 3",
"HostBy": "sample string 4",
"StartDate": "2026-01-12T01:29:09.7692931+00:00",
"EndDate": "2026-01-12T01:29:09.7692931+00:00",
"StartTime": "00:00:00.1234567",
"EndTime": "00:00:00.1234567",
"VirtualEvent": true,
"Hided": true,
"Location": "sample string 9",
"UrlShortDescription": "sample string 10",
"Speaker": "sample string 11",
"VisibilityTypeId": 64,
"ConnectedChapterIds": "sample string 13"
}
application/xml, text/xml
Sample:
<PostEventRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ModelsLayer"> <ChapterId>1</ChapterId> <ConnectedChapterIds>sample string 13</ConnectedChapterIds> <Description>sample string 3</Description> <EndDate>2026-01-12T01:29:09.7692931+00:00</EndDate> <EndTime>PT0.1234567S</EndTime> <Hided>true</Hided> <HostBy>sample string 4</HostBy> <Location>sample string 9</Location> <Speaker>sample string 11</Speaker> <StartDate>2026-01-12T01:29:09.7692931+00:00</StartDate> <StartTime>PT0.1234567S</StartTime> <Title>sample string 2</Title> <UrlShortDescription>sample string 10</UrlShortDescription> <VirtualEvent>true</VirtualEvent> <VisibilityTypeId>64</VisibilityTypeId> </PostEventRequest>
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.