A new endpoint is available for POS systems to submit check details associated with a reservation. The submitted content is stored against the corresponding POS check in the PMS and displayed as individual line items, with each line break (\n) in the request treated as a separate line on the check.
The reference_number must match the POS check number previously submitted via POST /reservations/{id}/transactions. If the reference number does not match any existing POS check for the reservation, the request fails with HTTP 422.
Example request:
{
"reference_number": 12345,
"details": "POS Check - Poolside Café\nDate: 2025-06-16 13:10\nCovers: 3\nTable: 7\nServer: Mia R\n\n1x Caesar Salad $12.00\n2x Club Sandwich $28.00\n3x Iced Tea $9.00\n\nSubtotal $49.00\nTax $4.90\nService Charge $2.45\nTip $6.00\n\nTotal $62.35\n\nThank you!"
}




