Zoho Meeting API Documentation

Create a Meeting

This API allows you to create a meeting by providing the details (title, date, time and duration) of the meeting in the Schedule meeting form.

OAuth Scope: ZohoMeeting.meeting.CREATE

Arguments

Optional
 
topic
Required
Topic of the Meeting
agenda
Optional
Agenda of the Meeting
presenter
Optional
Presenter's Zoho User ID
startTime
Required
Start time of the Meeting
duration
Optional
Duration of the Meeting
timezone
Optional
Timezone of the Meeting
participants
Optional
 
email
Optional
Participant email of the Meeting
CopiedPOST /{zsoid}/sessions.json

Request Example

Copied$ curl https://meeting.zoho.com/api/v2/{zsoid}/sessions.json
-X POST
-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 201 Created
Content-Type:application/json;charset=UTF-8
{
    "session": {
        "meetingKey": 123456789,
        "topic": "Monthly Marketing Meeting",
        "agenda": "Points to get noted during meeting.",
        "presenter": 123456789,
        "startTime": "Jun 19, 2020 07:00 PM IST",
        "endTime": "Jun 19, 2020 08:00 PM IST",
        "duration": 3600000,
        "timezone": "Asia/Calcutta",
        "offset": 19800000,
        "pwd": "a***z",
        "encryptPwd": "a***z",
        "creatorZuid": 123456789,
        "joinLink": "https://meeting.zoho.com/join?key=123456789",
        "startLink": "https://meeting.zoho.com/meeting-start?key=1065243211",
        "participants": [
            {
                "id": "12345678912345",
                "email": "dummy@email.com"
            }
        ]
    }
}