Add notes to a flight booking
Attach free-text notes to a flight booking, for example a special request or an internal reference.
POST/Air/AirAddBookingNotes
Access requires the permission air_add_booking_notes
Path parameters
None.
Query parameters
None.
Body parameters
| Name | Type | Required | Description |
|---|---|---|---|
SessionId | string | Yes | Your session id. |
UniqueId | string | Yes | The booking id from book. |
Notes | array of string | Yes | One or more note lines to attach. |
Request
curl -X POST https://api.hermeseus.com/api/Air/AirAddBookingNotes \
-H "Content-Type: application/json" \
-d '{
"SessionId": "8f3c81d2-...",
"UniqueId": "TP-2026-000512",
"Notes": ["Wheelchair assistance requested", "Internal ref: ORD-4471"]
}'const res = await fetch("https://api.hermeseus.com/api/Air/AirAddBookingNotes", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
SessionId: "8f3c81d2-...",
UniqueId: "TP-2026-000512",
Notes: ["Wheelchair assistance requested", "Internal ref: ORD-4471"]
})
});
const data = await res.json();import requests
res = requests.post(
"https://api.hermeseus.com/api/Air/AirAddBookingNotes",
json={
"SessionId": "8f3c81d2-...",
"UniqueId": "TP-2026-000512",
"Notes": ["Wheelchair assistance requested", "Internal ref: ORD-4471"],
},
)
data = res.json()Response
| Field | Type | Description |
|---|---|---|
Success | boolean | true on success. |
Error | object | null on success. |
{
"Success": true,
"Error": null
}Errors
| Code | Meaning | Fix |
|---|---|---|
Err0106001 | UniqueId or Notes is missing. | Send both. Notes must be an array. |

