Skip to main content

Cash / Check

Some hotels allow a guest to pay for a hotel reservation using cash or a check.

 

Request Parameters

ParameterDescriptionTypeRequired
Guests/Payments/@RoleSpecifies the role of a payment method. 
Values: Alternate, Business, Personal, Primary, Secondary
StringNo
Guests/Payments/@TypeSpecifies the type of a payment method. 
Values: Cash, Check
StringNo

 

Sample Request (Partial) - Cash as a Payment Method

{
    "Guests": [{
        "Payments": [{
                "Role": "Primary",
                "Type": "Cash",
            }]
    }]
}


 

Sample Request (Partial) - Check as a Payment Method

{
    "Guests": [{
        "Payments": [{
                "Role": "Primary",
                "Type": "Check",
            }]
    }]
}