POST api/event/EventAttendeeDetail
Request Information
URI Parameters
None.
Body Parameters
EventAttendeeRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | globally unique identifier |
None. |
|
| AttendeeId | globally unique identifier |
None. |
|
| SendNotify | boolean |
None. |
|
| Status | ApprovalStatusType |
None. |
|
| RejectReason | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreateBy | globally unique identifier |
None. |
|
| CreateDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventId": "5f55b96e-b0a6-4afc-8ca2-cfa8dfdcdb1d",
"AttendeeId": "2e45926b-b844-4ace-8a99-5f69a5583962",
"SendNotify": true,
"Status": 1003000,
"RejectReason": "sample string 4",
"Id": "ca0d9c00-b36b-4e4d-8da5-9149d9e2b901",
"CreateBy": "d5873c71-a524-4858-a05e-56a87e4db48b",
"CreateDate": "2026-05-31T23:53:04.505615+08:00"
}
application/xml, text/xml
Sample:
<EventAttendeeRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel"> <CreateBy>d5873c71-a524-4858-a05e-56a87e4db48b</CreateBy> <CreateDate>2026-05-31T23:53:04.505615+08:00</CreateDate> <Id>ca0d9c00-b36b-4e4d-8da5-9149d9e2b901</Id> <AttendeeId>2e45926b-b844-4ace-8a99-5f69a5583962</AttendeeId> <EventId>5f55b96e-b0a6-4afc-8ca2-cfa8dfdcdb1d</EventId> <RejectReason>sample string 4</RejectReason> <SendNotify>true</SendNotify> <Status>Draft</Status> </EventAttendeeRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
JsonResultOfEventAttendeeView| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | EventAttendeeView |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.