Let the platform do the work

/Calls/:record PUT

Overview

Update a calendar event record of the specified type.

Request Arguments

Name Type Description Required
all_recurrences Boolean Flag to update all events in a series. False

Request

http://{site_url}/rest/v10/Meetings/2c9e5c09-6824-0d14-f5cb-5130321ac3cf?all_recurrences=true
{
    "name":"Department Meeting",
    "description":"Weekly Department Meeting",
    "date_start":"yyyy-mm-ddThh:mm:ss-00:00",
    "date_end":"yyyy-mm-ddThh:mm:ss-00:00",
    "repeat_type":"Weekly",
    "repeat_interval":"1",  /* Every Week */
    "repeat_dow":"25",      /* Tue and Fri */
    "repeat_count":"4",     /* 4 Recurrences */
    "repeat_until":"",
}

Response Arguments

Name Description Start Date End Date
<record field> Returns the fields for the updated record.

Response

{

}

Change Log

Version Change
v10 Added /<module>/:record PUT endpoint.

Topics