Edit Meeting API

You can use this API to edit a meeting. You can change the topic, agenda, or time of a meeting you've scheduled at anytime.

OAuth Scope: ZohoMeeting.meeting.UPDATE

Arguments

Optional
 
topic
Optional
Topic of the meeting
agenda
Optional
Agenda of the meeting
presenter
Optional
Presenter Zoho User ID
startTime
Optional
Start time of the meeting
duration
Optional
Duration of the meeting scheduled
timezone
Optional
Timezone of the meeting scheduled
participants
Optional
 
email
Optional
Participant email of the meeting
CopiedPUT /{zsoid}/sessions/{meetingKey}.json

Request Example

Copied$ curl https://meeting.zoho.com/api/v2/{zsoid}/sessions/{meetingKey}.json
-X PUT
-H "Content-Type: application/json;charset=UTF-8"
-H "Authorization: Zoho-oauthtoken ba4604e8e433g9c892e360d53463oec5"
-d JSONString='{
    "session": {
        "topic": "Monthly Marketing Meeting",
        "agenda": "Points to get noted during meeting.",
        "presenter": 123456789,
        "startTime": "Jun 19, 2020 07:00 PM",
        "duration": 3600000,
        "timezone": "Asia/Calcutta",
        "participants": [
            {
                "email": "dummy@email.com"
            }
        ]
    }
}'

Response Example

CopiedHTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
    "session": {
        "meetingKey": 123456789,
        "topic": "Monthly Marketing Meeting",
        "agenda": "Points to get noted during meeting.",
        "presenterEmail": "frida.m@zylker.com",
        "presenter": 123456789,
        "presenterName": "Frida",
        "startTime": "Jun 19, 2020 07:00 PM",
        "duration": 3600000,
        "timezone": "Asia/Calcutta",
        "joinLink": "https://meeting.zoho.com/join?key=123456789",
        "startLink": "https://meeting.zoho.com/meeting-start?key=1065243211",
        "pwd": "a***z",
        "encryptPwd": "a***z",
        "meetingEmbedUrl": "https://meeting.zoho.com/meeting/login/embedmeeting.jsp?meetingKey=1046517098&newWindow=true&t=cd14920943b8be630e8e485040a24177bd57e92a87f8db4f698d108ca23b0b7c"
    }
}