POST api/TeamMember/CreateEvents
Request Information
URI Parameters
None.
Body Parameters
TeamMemberCreateEventDto| Name | Description | Type | Additional information |
|---|---|---|---|
| teamMemberId | string |
Required |
|
| eventType | integer |
None. |
|
| startFrom | date |
None. |
|
| startTo | date |
None. |
|
| specialNote | string |
Required |
|
| isBlockTime | integer |
None. |
|
| isAllDay | integer |
None. |
|
| discountId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"teamMemberId": "sample string 1",
"eventType": 2,
"startFrom": "2026-01-12T03:50:41.7732325+00:00",
"startTo": "2026-01-12T03:50:41.7732325+00:00",
"specialNote": "sample string 5",
"isBlockTime": 6,
"isAllDay": 7,
"discountId": 1
}
application/xml, text/xml
Sample:
<TeamMemberCreateEventDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Beauty_Lab_Dashboard.DTO"> <discountId>1</discountId> <eventType>2</eventType> <isAllDay>7</isAllDay> <isBlockTime>6</isBlockTime> <specialNote>sample string 5</specialNote> <startFrom>2026-01-12T03:50:41.7732325+00:00</startFrom> <startTo>2026-01-12T03:50:41.7732325+00:00</startTo> <teamMemberId>sample string 1</teamMemberId> </TeamMemberCreateEventDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |