POST api/event/EventAttendeeStatusUpdate
Request Information
URI Parameters
None.
Body Parameters
EventAttendeeApprovalRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | globally unique identifier |
None. |
|
| AttendeeId | globally unique identifier |
None. |
|
| SendNotify | boolean |
None. |
|
| Status | ApprovalStatusType |
None. |
|
| RejectReason | string |
None. |
|
| ApprovalPassMessage | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| CreateBy | globally unique identifier |
None. |
|
| CreateDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventId": "13a40a71-fb6c-4e1b-a99a-0d732ecff5ea",
"AttendeeId": "ffcac336-4fc8-4cec-8f92-366b38799de8",
"SendNotify": true,
"Status": 1003000,
"RejectReason": "sample string 4",
"ApprovalPassMessage": "sample string 5",
"Id": "c995f40d-ce31-49ad-bf5e-715e3b2a49c8",
"CreateBy": "0b932f54-65bf-4231-9b9d-e90692119680",
"CreateDate": "2026-05-31T23:10:46.1371194+08:00"
}
application/xml, text/xml
Sample:
<EventAttendeeApprovalRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel"> <CreateBy>0b932f54-65bf-4231-9b9d-e90692119680</CreateBy> <CreateDate>2026-05-31T23:10:46.1371194+08:00</CreateDate> <Id>c995f40d-ce31-49ad-bf5e-715e3b2a49c8</Id> <ApprovalPassMessage>sample string 5</ApprovalPassMessage> <AttendeeId>ffcac336-4fc8-4cec-8f92-366b38799de8</AttendeeId> <EventId>13a40a71-fb6c-4e1b-a99a-0d732ecff5ea</EventId> <RejectReason>sample string 4</RejectReason> <SendNotify>true</SendNotify> <Status>Draft</Status> </EventAttendeeApprovalRequest>
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.