POST api/FlightBooking/GetNotes
Request Information
URI Parameters
None.
Body Parameters
PnrRequestName | Description | Type | Additional information |
---|---|---|---|
Locator | string |
None. |
|
Id | integer |
None. |
|
ClientId | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Locator": "sample string 1", "Id": 2, "ClientId": "sample string 3" }
text/xml
Sample:
<PnrRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RightRez.Autobook.PNRBookingEngine"> <ClientId>sample string 3</ClientId> <Id>2</Id> <Locator>sample string 1</Locator> </PnrRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of BookingNoteName | Description | Type | Additional information |
---|---|---|---|
Message | string |
None. |
|
Author | string |
None. |
|
Status | integer |
None. |
|
Confidential | boolean |
None. |
|
SendToCrewManager | boolean |
None. |
|
SendToEntertainmentManager | boolean |
None. |
|
Date | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Message": "sample string 1", "Author": "sample string 2", "Status": 1, "Confidential": true, "SendToCrewManager": true, "SendToEntertainmentManager": true, "Date": "2025-06-02T20:24:46.5362614+00:00" }, { "Message": "sample string 1", "Author": "sample string 2", "Status": 1, "Confidential": true, "SendToCrewManager": true, "SendToEntertainmentManager": true, "Date": "2025-06-02T20:24:46.5362614+00:00" } ]
text/xml
Sample:
<ArrayOfBookingNote xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RightRez.Web.Api.Models.FlightBooking"> <BookingNote> <Author>sample string 2</Author> <Confidential>true</Confidential> <Date>2025-06-02T20:24:46.5362614+00:00</Date> <Message>sample string 1</Message> <SendToCrewManager>true</SendToCrewManager> <SendToEntertainmentManager>true</SendToEntertainmentManager> <Status>1</Status> </BookingNote> <BookingNote> <Author>sample string 2</Author> <Confidential>true</Confidential> <Date>2025-06-02T20:24:46.5362614+00:00</Date> <Message>sample string 1</Message> <SendToCrewManager>true</SendToCrewManager> <SendToEntertainmentManager>true</SendToEntertainmentManager> <Status>1</Status> </BookingNote> </ArrayOfBookingNote>