POST api/event/EventAttendeePaymentUpdate
Request Information
URI Parameters
None.
Body Parameters
EventAttendeePaymentRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EventId | globally unique identifier |
None. |
|
| EventAttendee | globally unique identifier |
None. |
|
| PaymentStatus | PaymentStatus |
None. |
|
| RefundReason | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventId": "97dd3be5-db9a-4275-b94b-4ca1f996688c",
"EventAttendee": "2fca63e5-2eb9-44cd-b1c6-c3cb27cfb9f6",
"PaymentStatus": 1001,
"RefundReason": "sample string 3"
}
application/xml, text/xml
Sample:
<EventAttendeePaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DeloitteEvent.DataModel"> <EventAttendee>2fca63e5-2eb9-44cd-b1c6-c3cb27cfb9f6</EventAttendee> <EventId>97dd3be5-db9a-4275-b94b-4ca1f996688c</EventId> <PaymentStatus>Unpaid</PaymentStatus> <RefundReason>sample string 3</RefundReason> </EventAttendeePaymentRequest>
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.