|
|
|
|
Add a new appointment.
| Method name |
http://planner.zoho.com/api/private/xml/appointment/add |
| API description |
Given
the ticket, apikey, pageId, appTitle, schDate, schTime, remindMe
(before) and repeatInt a new appointment will be added in that page on
successful
authentication. |
| Parameters
to be passed |
ticket, apikey, pageId, appTitle,
schDate(MM-dd-yyyy), schTime(HH:mm),
remindMe(on time, 15 mins, 30 mins, 1 hour, 2 hours, 6 hours, 12 hours,
1 day), repeatInt(only once, every 1 hour, every 2 hours, every 3
hours, every 4 hours, every 6 hours, every 8 hours, every 12 hours,
every day, every week, every month, every year)
|
| Sample call |
<form method="post"
action="http://planner.zoho.com/api/private/xml/appointment/add?ticket=[Ticket]&apikey=[ApiKey]">
<input type="hidden" name="pageId" value="7678">
<input type="text" name="appTitle" value="Added via api">
<input type="text" name="schDate" value="06-26-2007">
<input type="text" name="schTime" value="12:05">
<input type="text" name="remindMe" value="on time">
<input type="text" name="repeatInt" value="only once">
<input type="submit" value="Add Appointment" name="submit">
</form>
|
| Output XML |
<response
uri="/api/private/xml/appointment/add">
<result>
<Appointment>
<appointment_id>42302</appointment_id>
<appointment>Added via
api</appointment>
<appointment_at>2007-06-26
15:45:00.0</appointment_at>
<remind_me>on
time</remind_me>
<repeat_frequency>only
once</repeat_frequency>
</Appointment>
</result>
</response> |
|
Document Saved Successfully
|
|
|
|
|
|
|