Edit Webinar API

You can use this API to edit the title, description, and time of your webinar. You can also edit the polls. Your registrants will be notified about the changes via email.

OAuth Scope: ZohoMeeting.webinar.UPDATE

Arguments

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

Request Example

Copied$ curl https://meeting.zoho.com/api/v2/{zsoid}/webinar/{webinarKey}.json
-X PUT
-H "Content-Type: application/json;charset=UTF-8"
-H "Authorization: Zoho-oauthtoken ba4604e8e433g9c892e360d53463oec5"
-d JSONString='{
    "session": {
        "topic": "Monthly Marketing Webinar",
        "agenda": "Description of webinar.",
        "presenter": "7989202345",
        "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": "567891679",
        "topic": "Monthly Marketing Webinar",
        "agenda": "Description of webinar.",
        "presenterEmail": "frida.m@zylker.com",
        "presenter": "7989202345",
        "startTime": "Jun 19, 2020 07:00 PM IST",
        "endTime": "Jun 19, 2020 08:00 PM IST",
        "duration": 3600000,
        "timezone": "Asia/Calcutta",
        "offset": 19800000,
        "registrationLink": "https://meeting.zoho.com/meeting/register?sessionId=1065156851",
        "startLink": "/meeting-start?key=1021744359",
        "creatorZuid": 123456789,
        "participants": [
            {
                "id": "12345678912345",
                "email": "dummy@email.com"
            }
        ]
    }
}