Breadcrumb
- Reservation Services
- Create Reservation
- Use Cases
- Payment Methods
- Cash / Check
Cash / Check
Some hotels allow a guest to pay for a hotel reservation using cash or a check.
Request Parameters
Parameter | Description | Type | Required |
---|---|---|---|
Guests/Payments/@Role | Specifies the role of a payment method. Values: Alternate, Business, Personal, Primary, Secondary | String | No |
Guests/Payments/@Type | Specifies the type of a payment method. Values: Cash, Check | String | No |
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",
}]
}]
}