|
als_get_reservation_seats.cgi |
Top Previous Next |
|
Description The als_get_reservation_seats.cgi web service will the seat information for a given reservation or for a specific date. This call can be used to show all reservations for a date, that have not been seated using the notseated parameter.
It can also be used to return all seating information for a specific reservation.
Seats can be added to a reservation using als_insert_reservation_seats.cgi and seats maybe updated using als_update_reservation_seat.cgi
You can also get seats for a specific Date+tour or an Event
Required params: either Reservation, SeatCode or Event are required
or the combination of Date+Tour
Example Usage http://127.0.0.1/als_get_reservation_seats.cgi?reservation=54231
http://192.168.0.19/als_get_reservation_seats.cgi?date=2005-04-01&equaltime=07:00&tour=3
Reservation or date is required.
Inputs
Returned Fields
XML Example
<?xml version="1.0" encoding="utf-8" ?> - <seats> - <Inputs> <Param date="2005-04-01" /> <Param equaltime="07:00" /> <Param tour="3" /> <Param params="yes" /> </Inputs> - <data count="2"> <row seatcode="125657" tourtime="7:00:00 AM" tourname="Pontoon Canyon Landing" tour="3" tourdate="4/1/2005" seatno="1" lastname="Zaki" firstname="Brenda" notes="" weight="136" checkedin="True" reservation="23871" /> <row seatcode="125658" tourtime="7:00:00 AM" tourname="Pontoon Canyon Landing" tour="3" tourdate="4/1/2005" seatno="2" lastname="Zaki" firstname="Sabah" notes="" weight="182" checkedin="True" reservation="23871" /> </data> </seats> |