POST Events/UpdateEventBooking
Request Information
URI Parameters
None.
Body Parameters
RequestUpdateEventBooking| Name | Description | Type | Additional information |
|---|---|---|---|
| EventID | integer |
None. |
|
| ArrID | integer |
None. |
|
| EventBookingLinesJSON | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EventID": 1,
"ArrID": 2,
"EventBookingLinesJSON": "sample string 3"
}
text/html
Sample:
{"EventID":1,"ArrID":2,"EventBookingLinesJSON":"sample string 3"}
application/xml, text/xml
Sample:
<RequestUpdateEventBooking xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RequestModels"> <ArrID>2</ArrID> <EventBookingLinesJSON>sample string 3</EventBookingLinesJSON> <EventID>1</EventID> </RequestUpdateEventBooking>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseUpdateEventBooking| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true
}
text/html
Sample:
{"success":true}
application/xml, text/xml
Sample:
<ResponseUpdateEventBooking xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ResponseModels"> <success xmlns="http://schemas.datacontract.org/2004/07/GlobalModels">true</success> </ResponseUpdateEventBooking>