POST api/Booking/RequestChange
Request Information
URI Parameters
None.
Body Parameters
ChangeBookingRQ| Name | Description | Type | Additional information |
|---|---|---|---|
| BookingId | integer |
None. |
|
| DetailsOfChanging | string |
None. |
|
| UserId | globally unique identifier |
None. |
|
| SecCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"BookingId": 1,
"DetailsOfChanging": "sample string 2",
"UserId": "85682c48-2ee9-463f-b152-5616c2220b96",
"SecCode": "sample string 3"
}
application/xml, text/xml
Sample:
<ChangeBookingRQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Flynet.API.Models"> <BookingId>1</BookingId> <DetailsOfChanging>sample string 2</DetailsOfChanging> <SecCode>sample string 3</SecCode> <UserId>85682c48-2ee9-463f-b152-5616c2220b96</UserId> </ChangeBookingRQ>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>