Skip to main content

​Create a Webinar

You can use this API to create a webinar by filling in details including the title of your webinar, a short description, date, duration, frequency, and time zone.

OAuth Scope: ZohoWebinar.webinar.CREATE

Arguments

SessionOptional
topicRequired 
Topic of the Webinar
agendaOptional 
Agenda of the Webinar
presenterOptional 
Presenter Zoho User ID
startTimeRequired 
Start time of the Webinar
durationOptional 
Duration of the Webinar scheduled
timezoneOptional 
Timezone of the Webinar scheduled
CopiedPOST /{zsoid}/webinar.json

 

Request Example

Copied$ curl https://webinar.zoho.com/api/v2/{zsoid}/webinar.json
-X POST
-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, 2023 04:00 PM",
        "duration": 3600000,
        "timezone": "Asia/Calcutta",
    }
}'

 

Response Example

CopiedHTTP/1.1 201 Created
Content-Type:application/json;charset=UTF-8
{
    "session": {
        "webinarKey": "567891679",
        "topic": "Monthly Marketing Webinar",
        "agenda": "Description of webinar.",
        "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,
        "creatorZuid": 123456789,
        "registrationLink": "https://webinar.zoho.com/webinar/register?sessionId=1065156851",
        "startLink": "/webinar-start?key=1021744359",
        "participants": [
            {
                "email": "dummy@email.com"
            }
        ]
    }
}

Show full

Show less

 

 

On this page