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: ZohoMeeting.webinar.CREATE
Arguments
session Optional topic Required Topic of the Webinar agenda Optional Agenda of the Webinar presenter Optional Presenter Zoho User ID startTime Required 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 |
CopiedPOST /{zsoid}/webinar.json
Request Example
Copied$ curl https://meeting.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",
"participants": [
{
"email": "dummy@email.com"
}
]
}
}'
Response Example
CopiedHTTP/1.1 201 Created
Content-Type:application/json;charset=UTF-8
{
"session": {
"meetingKey": "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://meeting.zoho.com/meeting/register?sessionId=1065156851",
"startLink": "/meeting-start?key=1021744359",
"participants": [
{
"email": "dummy@email.com"
}
]
}
}