POST api/event/EventAddition
Request Information
URI Parameters
None.
Body Parameters
EventAdditionRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| Language | string |
None. |
|
| Department | string |
None. |
|
| StartDate | date |
None. |
|
| EndDate | date |
None. |
|
| StartTime | time interval |
None. |
|
| EndTime | time interval |
None. |
|
| TeamMemberList | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Title": "sample string 1",
"Language": "sample string 2",
"Department": "sample string 3",
"StartDate": "2026-05-31T14:58:12.3628708+08:00",
"EndDate": "2026-05-31T14:58:12.3628708+08:00",
"StartTime": "00:00:00.1234567",
"EndTime": "00:00:00.1234567",
"TeamMemberList": [
"50706285-417e-480b-9304-6426dc31ddb3",
"2b4c212d-2537-4c46-9213-cbd98cc034aa"
]
}
application/xml, text/xml
Sample:
<EventAdditionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel">
<Department>sample string 3</Department>
<EndDate>2026-05-31T14:58:12.3628708+08:00</EndDate>
<EndTime>PT0.1234567S</EndTime>
<Language>sample string 2</Language>
<StartDate>2026-05-31T14:58:12.3628708+08:00</StartDate>
<StartTime>PT0.1234567S</StartTime>
<TeamMemberList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>50706285-417e-480b-9304-6426dc31ddb3</d2p1:guid>
<d2p1:guid>2b4c212d-2537-4c46-9213-cbd98cc034aa</d2p1:guid>
</TeamMemberList>
<Title>sample string 1</Title>
</EventAdditionRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultOfCommonResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | CommonResult |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.