Schedule a SDK session
To schedule a meeting using the SDK.
API: https://meeting.zoho.com/meeting/api/v2/{orgId}/sdk/session
Method: POST
OAuth Scope: ZohoMeeting.sdk.CREATE
Path Params: orgId - organization id which is retrieved from currentUser api
Payload
Copied{
"session": {
"topic": "Monthly Marketing Meeting",
"agenda": "Points to get noted during meeting.",
"presenter": 71158042,
"startTime": "Jan 4, 2024 07:00 PM",
"duration": 3600000,
"timezone": "Asia/Calcutta",
"participants": [
{
"email": "dummy@email.com"
}
]
}
}
Request Example
Copiedhttps://meeting.zoho.com/meeting/api/v2/1234567/sdk/session
Response Example
Copied{
"session": {
"dialinUrl": "https://help.zoho.com/portal/kb/articles/zoho-meeting-dial-in-numbers",
"timezone": "Asia/Calcutta",
"departmentId": "556536000000025015",
"addedParticipants": "[dummy@email.com]",
"webServer": "meeting.zoho.com",
"creatorZuid": "71158042",
"source": "Meeting Create page",
"endTimeMillisec": 1704378600000,
"encryptPwd": "091cf9166b2ad6ed31f828fcb3e098563cb88654d7b012e537a8c8bf0497b963",
"duration": 3600000,
"sys_id": "556536000000214003",
"accessCode": "11691 28522 #",
"sessionType": "meeting",
"startTime": "Jan 04, 2024 07:00 PM IST",
"meeting": {
"zsoid": "77994516"
},
"participants": [
{
"id": "556536000000214007",
"email": "dummy@email.com"
}
],
"departmentName": "My Department",
"creator": "71158042",
"presenter": 71158042,
"offset": "19800000",
"isRecurring": false,
"joinLink": "https://meet.zoho.com/gT9JMpyG9z",
"agenda": "Points to get noted during meeting.",
"startLink": "https://meeting.zoho.com/meeting/statelessStart?signature=MIIBIjANB&key=1169128522&frameOrigin=https://<your_registered_domain>",
"UID": 556536000000214003,
"startTimeMillisec": 1704375000000,
"topic": "Monthly Marketing Meeting",
"endTime": "Jan 04, 2024 08:00 PM IST",
"pwd": "GLivoM",
"meetingKey": "1169128522",
"removedParticipants": "[]",
"startDate": "Jan 4, 2024 07:00 PM"
}
}
Show full
Show less
POSSIBLE ERROR CASES (Invalid DC or Invalid token)
CopiedHTTP Code: 400
HTTP Body:
{
"error": {
"code": 2000,
"message": "INVALID_OAUTHTOKEN"
}
}
Resolution: Check whether the entered DC is correct and the entered token is not expired
2.Invalid orgId (HTTP Code: 403)
Copied{
"error": {
"code": 1025,
"message": "Org doesn't matches with request uri"
},
"resourceType": "/meeting/api/v2/1234567/user"
}