POST api/event/EventAttendeeStatusBatchUpdate
Request Information
URI Parameters
None.
Body Parameters
EventAttendeeBatchRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | globally unique identifier |
None. |
|
| SendNotify | boolean |
None. |
|
| EventAttendees | Collection of string |
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": "3462cf35-44ce-4b06-9a3b-4a4dc08cc58f",
"SendNotify": true,
"EventAttendees": [
"sample string 1",
"sample string 2"
],
"Status": 1003000,
"RejectReason": "sample string 3",
"ApprovalPassMessage": "sample string 4",
"Id": "f585a1eb-54e5-4bb7-9216-ade7e6be7ced",
"CreateBy": "6d305da8-1bb3-45a5-baa2-e44e2eb08ef5",
"CreateDate": "2026-05-31T23:10:48.4849157+08:00"
}
application/xml, text/xml
Sample:
<EventAttendeeBatchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel">
<CreateBy>6d305da8-1bb3-45a5-baa2-e44e2eb08ef5</CreateBy>
<CreateDate>2026-05-31T23:10:48.4849157+08:00</CreateDate>
<Id>f585a1eb-54e5-4bb7-9216-ade7e6be7ced</Id>
<ApprovalPassMessage>sample string 4</ApprovalPassMessage>
<EventAttendees xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</EventAttendees>
<EventId>3462cf35-44ce-4b06-9a3b-4a4dc08cc58f</EventId>
<RejectReason>sample string 3</RejectReason>
<SendNotify>true</SendNotify>
<Status>Draft</Status>
</EventAttendeeBatchRequest>
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.