Skip to main content
PUT
/
bookings
/
{bookingId}
/
amend
Amend guest name on a booking
curl --request PUT \
  --url https://book.liteapi.travel/v3.0/bookings/{bookingId}/amend \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "holder": {
    "firstName": "John",
    "lastName": "Doe",
    "email": "[email protected]"
  },
  "remarks": "A quiet room please"
}
'
{
  "id": 566,
  "bookingId": "D_hitGeNh",
  "userId": 927,
  "type": "UPDATE",
  "subType": "UPDATE_NAME_CHANGE",
  "status": "PENDING",
  "prebookId": "",
  "holderEmail": "[email protected]",
  "holderFirstName": "John",
  "holderLastName": "Doe",
  "holderPhone": null,
  "remarks": "A quiet room please",
  "guests": [],
  "createdBy": 2051,
  "createdAt": "2025-06-18T16:36:14.033Z",
  "updatedAt": "2025-06-18T16:36:14.033Z"
}

Authorizations

X-API-Key
string
header
required

Path Parameters

bookingId
string
required

(Required) The unique identifier of the booking to amend.

Body

application/json
holder
object
required
remarks
string

Optional remarks for the amendment request.

Response

Amendment request created successfully.

id
integer

Amendment request ID.

bookingId
string

Booking ID being amended.

userId
integer

User ID who owns the booking.

type
string

Type of amendment (e.g., UPDATE).

subType
string

Subtype of amendment (e.g., UPDATE_NAME_CHANGE).

status
string

Status of the amendment request (e.g., PENDING).

prebookId
string

Prebook ID if applicable.

holderEmail
string

Holder's email after amendment.

holderFirstName
string

Holder's first name after amendment.

holderLastName
string

Holder's last name after amendment.

holderPhone
string

Holder's phone after amendment.

remarks
string

Remarks for the amendment.

guests
any[]

List of guests (if any).

createdBy
integer

User ID who created the amendment request.

createdAt
string

Timestamp when the amendment was created.

updatedAt
string

Timestamp when the amendment was last updated.