Get all open/closed appointments.
| Method name |
http://planner.zoho.com/api/private/xml/appointments/(open(or)closed) |
| API description |
Given the ticket, apikey and pageId from the list of
pages all the open appointments in that page will be listed on
successful
authentication. |
| Parameters
to be passed |
ticket, apikey, pageId |
| Sample call |
<form method="post"
action="http://planner.zoho.com/api/private/xml/appointments/open(or)closed?ticket=[Ticket]&apikey=[ApiKey]">
<input type="hidden" name="pageId" value="7678">
<input type="submit" value="Get Open Appointments" name="submit">
</form>
|
| Output XML |
<response
uri="/api/private/xml/appointments/open">
<result>
<PageDetail>
<page_id>6801</page_id>
<page_title>Test page</page_title>
<is_homepage>false</is_homepage>
<PageAppointments>
<Appointment>
<appointment_id>42001</appointment_id>
<appointment>Test
appointment</appointment>
<appointment_at>2007-06-27 01:00:00.0</appointment_at>
<remind_me>15
mins</remind_me>
<repeat_frequency>every day</repeat_frequency>
</Appointment>
</PageAppointments>
</PageDetail>
</result>
</response> |