POST api/event/EventAgendaAddition
Request Information
URI Parameters
None.
Body Parameters
EventAgendaAdditionRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | globally unique identifier |
None. |
|
| Type | string |
None. |
|
| Title | string |
None. |
|
| Content | string |
None. |
|
| StartTime | time interval |
None. |
|
| EndTime | time interval |
None. |
|
| AgendaDate | date |
None. |
|
| Location | string |
None. |
|
| AgendaSpeakerIdList | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"AgendaSpeakerIdList": [
"4ceaabd6-eb64-403d-a55a-da3a5ab778bb",
"f1a1756d-e342-4a51-a109-93687323c875"
],
"EventId": "9a297c29-8276-456f-a58e-7d6a690334bf",
"Type": "sample string 2",
"Title": "sample string 3",
"Content": "sample string 4",
"StartTime": "00:00:00.1234567",
"EndTime": "00:00:00.1234567",
"AgendaDate": "2026-05-31T23:13:16.0634306+08:00",
"Location": "sample string 8"
}
application/xml, text/xml
Sample:
<EventAgendaAdditionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel">
<AgendaDate>2026-05-31T23:13:16.0634306+08:00</AgendaDate>
<AgendaSpeakerIdList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>4ceaabd6-eb64-403d-a55a-da3a5ab778bb</d2p1:guid>
<d2p1:guid>f1a1756d-e342-4a51-a109-93687323c875</d2p1:guid>
</AgendaSpeakerIdList>
<Content>sample string 4</Content>
<EndTime>PT0.1234567S</EndTime>
<EventId>9a297c29-8276-456f-a58e-7d6a690334bf</EventId>
<Location>sample string 8</Location>
<StartTime>PT0.1234567S</StartTime>
<Title>sample string 3</Title>
<Type>sample string 2</Type>
</EventAgendaAdditionRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultOfEventAgendaOutputParameters| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | EventAgendaOutputParameters |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.