Skip to main content

​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: ZohoWebinar.webinar.UPDATE

Arguments

SessionOptional
topicOptional 
Topic of the Webinar
agendaOptional 
Agenda of the Webinar
presenterOptional 
Presenter Zoho User ID
startTimeOptional 
Start time of the Webinar
durationOptional 
Duration of the Webinar scheduled
timezoneOptional 
Timezone of the Webinar scheduled
CopiedPUT /{zsoid}/webinar/{webinarKey}.json

Request Example

Copied$ curl https://webinar.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",
    }
}'

Response Example

CopiedHTTP/1.1 200 OK
Content-Type:application/json;charset=UTF-8
{
    "session": {
        "webinarKey": "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://webinar.zoho.com/webinar/register?sessionId=1065156851",
        "startLink": "/webinar-start?key=1021744359",
        "creatorZuid": 123456789,
        "participants": [
            {
                "id": "12345678912345",
                "email": "dummy@email.com"
            }
        ]
    }
}

Show full

Show less