SQL Server / Zoom API / Update a webinar
Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
DECLARE @req int
-- Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.HttpRequest', @req OUT
EXEC sp_OASetProperty @req, 'HttpVerb', 'PATCH'
EXEC sp_OASetProperty @req, 'Path', '/'
EXEC sp_OASetProperty @req, 'ContentType', 'multipart/form-data'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'topic', 'est sunt'
EXEC sp_OAMethod @req, 'AddStringForUpload2', @success OUT, '', '', '', '', 'est sunt5'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'start_time', 'est sunt52011-10-13T17:23:42.742Z'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'duration', 'est sunt52011-10-13T17:23:42.742Z46337436'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'timezone', 'est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteur'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'password', 'est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat e'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'agenda', 'est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat ein mollit velit'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'tracking_fields', 'est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat ein mollit velit[{"field":"ullamco officia ipsum","value":"in incididunt esse"},{"field":"sit magna incididunt laboris","value":"sint cupidatat commodo laboris"}]'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'recurrence', 'est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat ein mollit velit[{"field":"ullamco officia ipsum","value":"in incididunt esse"},{"field":"sit magna incididunt laboris","value":"sint cupidatat commodo laboris"}]{"type":1,"repeat_interval":50295254,"weekly_days":"1","monthly_day":1,"monthly_week":4,"monthly_week_day":5,"end_times":1,"end_date_time":"2003-12-03T15:36:04.358Z"}'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'settings', 'est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat ein mollit velit[{"field":"ullamco officia ipsum","value":"in incididunt esse"},{"field":"sit magna incididunt laboris","value":"sint cupidatat commodo laboris"}]{"type":1,"repeat_interval":50295254,"weekly_days":"1","monthly_day":1,"monthly_week":4,"monthly_week_day":5,"end_times":1,"end_date_time":"2003-12-03T15:36:04.358Z"}{"host_video":true,"panelists_video":true,"practice_session":false,"hd_video":false,"hd_video_for_attendees":false,"send_1080p_video_to_attendees":false,"approval_type":2,"registration_type":1,"audio":"both","auto_recording":"none","enforce_login":false,"enforce_login_domains":"in","alternative_hosts":"esse nisi nostrud irure","close_registration":false,"show_share_button":false,"allow_multiple_devices":true,"on_demand":false,"global_dial_in_countries":["quis id sunt enim","non sit Lorem"],"contact_name":"labore cillum","contact_email":"elit sint pariatur esse sunt","registrants_confirmation_email":true,"registrants_restrict_number":0,"notify_registrants":true,"post_webinar_survey":false,"survey_url":"dolor elit","registrants_email_notification":false,"meeting_authentication":true,"authentication_option":"sit ut ex Duis","authentication_domains":"mollit ea tempor Ut ut","authentication_name":"consequat qui","question_and_answer":{"enable":true,"allow_anonymous_questions":false,"answer_questions":"all","attendees_can_upvote":false,"attendees_can_comment":true},"email_language":"laboris in deserunt","panelists_invitation_email_notification":false,"attendees_and_panelists_reminder_email_notification":{"enable":true,"type":6},"follow_up_attendees_email_notification":{"enable":true,"type":7},"follow_up_absentees_email_notification":{"enable":false,"type":4},"language_interpretation":{"enable":true,"interpreters":[{"email":"cGKQ5@MdScjEib.pzb","languages":"culpa commodo consequat minim"},{"email":"XAcvu@dUioJhxUNUnXuOtNHecHcLTBwxKeUCNJ.hlax","languages":"eu Lorem sint consectetur veniam"}]}}'
EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Authorization', 'Bearer <access_token>'
DECLARE @resp int
EXEC sp_OAMethod @http, 'SynchronousRequest', @resp OUT, 'reprehenderit', 80, 0, @req
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @req
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @req
END
GO
Curl Command
curl -X PATCH
-H "Authorization: Bearer <access_token>"
-H "Content-Type: multipart/form-data"
--form 'topic=est sunt'
--form 'type=est sunt5'
--form 'start_time=est sunt52011-10-13T17:23:42.742Z'
--form 'duration=est sunt52011-10-13T17:23:42.742Z46337436'
--form 'timezone=est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteur'
--form 'password=est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat e'
--form 'agenda=est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat ein mollit velit'
--form 'tracking_fields=est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat ein mollit velit[{"field":"ullamco officia ipsum","value":"in incididunt esse"},{"field":"sit magna incididunt laboris","value":"sint cupidatat commodo laboris"}]'
--form 'recurrence=est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat ein mollit velit[{"field":"ullamco officia ipsum","value":"in incididunt esse"},{"field":"sit magna incididunt laboris","value":"sint cupidatat commodo laboris"}]{"type":1,"repeat_interval":50295254,"weekly_days":"1","monthly_day":1,"monthly_week":4,"monthly_week_day":5,"end_times":1,"end_date_time":"2003-12-03T15:36:04.358Z"}'
--form 'settings=est sunt52011-10-13T17:23:42.742Z46337436consequat occaecat Excepteuroccaecat ein mollit velit[{"field":"ullamco officia ipsum","value":"in incididunt esse"},{"field":"sit magna incididunt laboris","value":"sint cupidatat commodo laboris"}]{"type":1,"repeat_interval":50295254,"weekly_days":"1","monthly_day":1,"monthly_week":4,"monthly_week_day":5,"end_times":1,"end_date_time":"2003-12-03T15:36:04.358Z"}{"host_video":true,"panelists_video":true,"practice_session":false,"hd_video":false,"hd_video_for_attendees":false,"send_1080p_video_to_attendees":false,"approval_type":2,"registration_type":1,"audio":"both","auto_recording":"none","enforce_login":false,"enforce_login_domains":"in","alternative_hosts":"esse nisi nostrud irure","close_registration":false,"show_share_button":false,"allow_multiple_devices":true,"on_demand":false,"global_dial_in_countries":["quis id sunt enim","non sit Lorem"],"contact_name":"labore cillum","contact_email":"elit sint pariatur esse sunt","registrants_confirmation_email":true,"registrants_restrict_number":0,"notify_registrants":true,"post_webinar_survey":false,"survey_url":"dolor elit","registrants_email_notification":false,"meeting_authentication":true,"authentication_option":"sit ut ex Duis","authentication_domains":"mollit ea tempor Ut ut","authentication_name":"consequat qui","question_and_answer":{"enable":true,"allow_anonymous_questions":false,"answer_questions":"all","attendees_can_upvote":false,"attendees_can_comment":true},"email_language":"laboris in deserunt","panelists_invitation_email_notification":false,"attendees_and_panelists_reminder_email_notification":{"enable":true,"type":6},"follow_up_attendees_email_notification":{"enable":true,"type":7},"follow_up_absentees_email_notification":{"enable":false,"type":4},"language_interpretation":{"enable":true,"interpreters":[{"email":"cGKQ5@MdScjEib.pzb","languages":"culpa commodo consequat minim"},{"email":"XAcvu@dUioJhxUNUnXuOtNHecHcLTBwxKeUCNJ.hlax","languages":"eu Lorem sint consectetur veniam"}]}}'
https://api.zoom.us/v2/webinars/:webinarId?occurrence_id=quis officia in reprehenderit
Postman Collection Item JSON
{
"name": "Update a webinar",
"request": {
"auth": {
"type": "oauth2"
},
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"value": "multipart/form-data"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "topic",
"value": "est sunt",
"type": "text"
},
{
"key": "type",
"value": "5",
"type": "text"
},
{
"key": "start_time",
"value": "2011-10-13T17:23:42.742Z",
"type": "text"
},
{
"key": "duration",
"value": "46337436",
"type": "text"
},
{
"key": "timezone",
"value": "consequat occaecat Excepteur",
"type": "text"
},
{
"key": "password",
"value": "occaecat e",
"type": "text"
},
{
"key": "agenda",
"value": "in mollit velit",
"type": "text"
},
{
"key": "tracking_fields",
"value": "[{\"field\":\"ullamco officia ipsum\",\"value\":\"in incididunt esse\"},{\"field\":\"sit magna incididunt laboris\",\"value\":\"sint cupidatat commodo laboris\"}]",
"type": "text"
},
{
"key": "recurrence",
"value": "{\"type\":1,\"repeat_interval\":50295254,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":4,\"monthly_week_day\":5,\"end_times\":1,\"end_date_time\":\"2003-12-03T15:36:04.358Z\"}",
"type": "text"
},
{
"key": "settings",
"value": "{\"host_video\":true,\"panelists_video\":true,\"practice_session\":false,\"hd_video\":false,\"hd_video_for_attendees\":false,\"send_1080p_video_to_attendees\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":false,\"enforce_login_domains\":\"in\",\"alternative_hosts\":\"esse nisi nostrud irure\",\"close_registration\":false,\"show_share_button\":false,\"allow_multiple_devices\":true,\"on_demand\":false,\"global_dial_in_countries\":[\"quis id sunt enim\",\"non sit Lorem\"],\"contact_name\":\"labore cillum\",\"contact_email\":\"elit sint pariatur esse sunt\",\"registrants_confirmation_email\":true,\"registrants_restrict_number\":0,\"notify_registrants\":true,\"post_webinar_survey\":false,\"survey_url\":\"dolor elit\",\"registrants_email_notification\":false,\"meeting_authentication\":true,\"authentication_option\":\"sit ut ex Duis\",\"authentication_domains\":\"mollit ea tempor Ut ut\",\"authentication_name\":\"consequat qui\",\"question_and_answer\":{\"enable\":true,\"allow_anonymous_questions\":false,\"answer_questions\":\"all\",\"attendees_can_upvote\":false,\"attendees_can_comment\":true},\"email_language\":\"laboris in deserunt\",\"panelists_invitation_email_notification\":false,\"attendees_and_panelists_reminder_email_notification\":{\"enable\":true,\"type\":6},\"follow_up_attendees_email_notification\":{\"enable\":true,\"type\":7},\"follow_up_absentees_email_notification\":{\"enable\":false,\"type\":4},\"language_interpretation\":{\"enable\":true,\"interpreters\":[{\"email\":\"cGKQ5@MdScjEib.pzb\",\"languages\":\"culpa commodo consequat minim\"},{\"email\":\"XAcvu@dUioJhxUNUnXuOtNHecHcLTBwxKeUCNJ.hlax\",\"languages\":\"eu Lorem sint consectetur veniam\"}]}}",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/webinars/:webinarId?occurrence_id=quis officia in reprehenderit",
"host": [
"{{baseUrl}}"
],
"path": [
"webinars",
":webinarId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit",
"description": "Webinar occurrence id. Support change of agenda, start_time, duration, settings: {host_video, panelist_video, hd_video, watermark, auto_recording}"
}
],
"variable": [
{
"key": "webinarId",
"value": "68423085",
"description": "(Required) The webinar's ID."
}
]
},
"description": "Use this API to make updates to a scheduled webinar. \n\n**Scopes:** `webinar:write:admin`, `webinar:write` <br> **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light` \n* This API has a daily rate limit of **100 requests per day**. The rate limit is applied to the `userId` of the **webinar host** used to make the request. \n\n**Prerequisites:** \n* A Pro or higher plan with a Webinar add-on."
},
"response": [
{
"name": "**HTTP Status Code:** `200`<br>\nWebinar subscription plan is missing. Enable webinar for this user once the subscription is added:{userId}.",
"originalRequest": {
"method": "PATCH",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "topic",
"value": "Ut",
"type": "text"
},
{
"key": "type",
"value": "5",
"type": "text"
},
{
"key": "start_time",
"value": "1995-10-21T14:15:05.149Z",
"type": "text"
},
{
"key": "duration",
"value": "-95998311",
"type": "text"
},
{
"key": "timezone",
"value": "minim eiusmod deserunt",
"type": "text"
},
{
"key": "password",
"value": "E",
"type": "text"
},
{
"key": "agenda",
"value": "culpa dolor eiusmod do",
"type": "text"
},
{
"key": "tracking_fields",
"value": "[{\"field\":\"aute eiusmod nostrud pariatur ut\",\"value\":\"dolore\"},{\"field\":\"proident magna aute\",\"value\":\"Duis anim reprehenderit dolor\"}]",
"type": "text"
},
{
"key": "recurrence",
"value": "{\"type\":3,\"repeat_interval\":53937967,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":1,\"monthly_week_day\":2,\"end_times\":1,\"end_date_time\":\"1997-06-25T08:20:38.136Z\"}",
"type": "text"
},
{
"key": "settings",
"value": "{\"host_video\":false,\"panelists_video\":false,\"practice_session\":false,\"hd_video\":false,\"hd_video_for_attendees\":false,\"send_1080p_video_to_attendees\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":true,\"enforce_login_domains\":\"ex magna enim\",\"alternative_hosts\":\"in dolor ut aute consequat\",\"close_registration\":false,\"show_share_button\":true,\"allow_multiple_devices\":false,\"on_demand\":false,\"global_dial_in_countries\":[\"consequat mollit proident\",\"ut velit\"],\"contact_name\":\"magna quis commodo\",\"contact_email\":\"al\",\"registrants_confirmation_email\":false,\"registrants_restrict_number\":0,\"notify_registrants\":false,\"post_webinar_survey\":false,\"survey_url\":\"incididunt Excepteur sunt\",\"registrants_email_notification\":true,\"meeting_authentication\":false,\"authentication_option\":\"nostrud\",\"authentication_domains\":\"veniam tempor elit et\",\"authentication_name\":\"cupid\",\"question_and_answer\":{\"enable\":true,\"allow_anonymous_questions\":false,\"answer_questions\":\"all\",\"attendees_can_upvote\":true,\"attendees_can_comment\":true},\"email_language\":\"consectetur dolor\",\"panelists_invitation_email_notification\":false,\"attendees_and_panelists_reminder_email_notification\":{\"enable\":false,\"type\":0},\"follow_up_attendees_email_notification\":{\"enable\":true,\"type\":2},\"follow_up_absentees_email_notification\":{\"enable\":true,\"type\":1},\"language_interpretation\":{\"enable\":false,\"interpreters\":[{\"email\":\"R-X@FTJStEpD.fvo\",\"languages\":\"Duis\"},{\"email\":\"Jjc7oaktlr5f@CzDEDCXwntqCU.xpy\",\"languages\":\"ea ad et\"}]}}",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/webinars/:webinarId?occurrence_id=quis officia in reprehenderit",
"host": [
"{{baseUrl}}"
],
"path": [
"webinars",
":webinarId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit"
}
],
"variable": [
{
"key": "webinarId",
"value": "68423085",
"description": "(Required) The webinar's ID."
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "**HTTP Status Code:** `204`<br>\nWebinar updated.",
"originalRequest": {
"method": "PATCH",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "topic",
"value": "Ut",
"type": "text"
},
{
"key": "type",
"value": "5",
"type": "text"
},
{
"key": "start_time",
"value": "1995-10-21T14:15:05.149Z",
"type": "text"
},
{
"key": "duration",
"value": "-95998311",
"type": "text"
},
{
"key": "timezone",
"value": "minim eiusmod deserunt",
"type": "text"
},
{
"key": "password",
"value": "E",
"type": "text"
},
{
"key": "agenda",
"value": "culpa dolor eiusmod do",
"type": "text"
},
{
"key": "tracking_fields",
"value": "[{\"field\":\"aute eiusmod nostrud pariatur ut\",\"value\":\"dolore\"},{\"field\":\"proident magna aute\",\"value\":\"Duis anim reprehenderit dolor\"}]",
"type": "text"
},
{
"key": "recurrence",
"value": "{\"type\":3,\"repeat_interval\":53937967,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":1,\"monthly_week_day\":2,\"end_times\":1,\"end_date_time\":\"1997-06-25T08:20:38.136Z\"}",
"type": "text"
},
{
"key": "settings",
"value": "{\"host_video\":false,\"panelists_video\":false,\"practice_session\":false,\"hd_video\":false,\"hd_video_for_attendees\":false,\"send_1080p_video_to_attendees\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":true,\"enforce_login_domains\":\"ex magna enim\",\"alternative_hosts\":\"in dolor ut aute consequat\",\"close_registration\":false,\"show_share_button\":true,\"allow_multiple_devices\":false,\"on_demand\":false,\"global_dial_in_countries\":[\"consequat mollit proident\",\"ut velit\"],\"contact_name\":\"magna quis commodo\",\"contact_email\":\"al\",\"registrants_confirmation_email\":false,\"registrants_restrict_number\":0,\"notify_registrants\":false,\"post_webinar_survey\":false,\"survey_url\":\"incididunt Excepteur sunt\",\"registrants_email_notification\":true,\"meeting_authentication\":false,\"authentication_option\":\"nostrud\",\"authentication_domains\":\"veniam tempor elit et\",\"authentication_name\":\"cupid\",\"question_and_answer\":{\"enable\":true,\"allow_anonymous_questions\":false,\"answer_questions\":\"all\",\"attendees_can_upvote\":true,\"attendees_can_comment\":true},\"email_language\":\"consectetur dolor\",\"panelists_invitation_email_notification\":false,\"attendees_and_panelists_reminder_email_notification\":{\"enable\":false,\"type\":0},\"follow_up_attendees_email_notification\":{\"enable\":true,\"type\":2},\"follow_up_absentees_email_notification\":{\"enable\":true,\"type\":1},\"language_interpretation\":{\"enable\":false,\"interpreters\":[{\"email\":\"R-X@FTJStEpD.fvo\",\"languages\":\"Duis\"},{\"email\":\"Jjc7oaktlr5f@CzDEDCXwntqCU.xpy\",\"languages\":\"ea ad et\"}]}}",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/webinars/:webinarId?occurrence_id=quis officia in reprehenderit",
"host": [
"{{baseUrl}}"
],
"path": [
"webinars",
":webinarId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit"
}
],
"variable": [
{
"key": "webinarId",
"value": "68423085",
"description": "(Required) The webinar's ID."
}
]
}
},
"status": "No Content",
"code": 204,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "**HTTP Status Code:** `300`<br>Invalid webinar Id.<br>\nInvalid recurrence settings.<br>\nA maximum of \"{rateLimitNumber}\" webinars can be created and updated for a single user in one day.",
"originalRequest": {
"method": "PATCH",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "topic",
"value": "Ut",
"type": "text"
},
{
"key": "type",
"value": "5",
"type": "text"
},
{
"key": "start_time",
"value": "1995-10-21T14:15:05.149Z",
"type": "text"
},
{
"key": "duration",
"value": "-95998311",
"type": "text"
},
{
"key": "timezone",
"value": "minim eiusmod deserunt",
"type": "text"
},
{
"key": "password",
"value": "E",
"type": "text"
},
{
"key": "agenda",
"value": "culpa dolor eiusmod do",
"type": "text"
},
{
"key": "tracking_fields",
"value": "[{\"field\":\"aute eiusmod nostrud pariatur ut\",\"value\":\"dolore\"},{\"field\":\"proident magna aute\",\"value\":\"Duis anim reprehenderit dolor\"}]",
"type": "text"
},
{
"key": "recurrence",
"value": "{\"type\":3,\"repeat_interval\":53937967,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":1,\"monthly_week_day\":2,\"end_times\":1,\"end_date_time\":\"1997-06-25T08:20:38.136Z\"}",
"type": "text"
},
{
"key": "settings",
"value": "{\"host_video\":false,\"panelists_video\":false,\"practice_session\":false,\"hd_video\":false,\"hd_video_for_attendees\":false,\"send_1080p_video_to_attendees\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":true,\"enforce_login_domains\":\"ex magna enim\",\"alternative_hosts\":\"in dolor ut aute consequat\",\"close_registration\":false,\"show_share_button\":true,\"allow_multiple_devices\":false,\"on_demand\":false,\"global_dial_in_countries\":[\"consequat mollit proident\",\"ut velit\"],\"contact_name\":\"magna quis commodo\",\"contact_email\":\"al\",\"registrants_confirmation_email\":false,\"registrants_restrict_number\":0,\"notify_registrants\":false,\"post_webinar_survey\":false,\"survey_url\":\"incididunt Excepteur sunt\",\"registrants_email_notification\":true,\"meeting_authentication\":false,\"authentication_option\":\"nostrud\",\"authentication_domains\":\"veniam tempor elit et\",\"authentication_name\":\"cupid\",\"question_and_answer\":{\"enable\":true,\"allow_anonymous_questions\":false,\"answer_questions\":\"all\",\"attendees_can_upvote\":true,\"attendees_can_comment\":true},\"email_language\":\"consectetur dolor\",\"panelists_invitation_email_notification\":false,\"attendees_and_panelists_reminder_email_notification\":{\"enable\":false,\"type\":0},\"follow_up_attendees_email_notification\":{\"enable\":true,\"type\":2},\"follow_up_absentees_email_notification\":{\"enable\":true,\"type\":1},\"language_interpretation\":{\"enable\":false,\"interpreters\":[{\"email\":\"R-X@FTJStEpD.fvo\",\"languages\":\"Duis\"},{\"email\":\"Jjc7oaktlr5f@CzDEDCXwntqCU.xpy\",\"languages\":\"ea ad et\"}]}}",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/webinars/:webinarId?occurrence_id=quis officia in reprehenderit",
"host": [
"{{baseUrl}}"
],
"path": [
"webinars",
":webinarId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit"
}
],
"variable": [
{
"key": "webinarId",
"value": "68423085",
"description": "(Required) The webinar's ID."
}
]
}
},
"status": "Multiple Choices",
"code": 300,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "**HTTP Status Code:** `400`<br>\nBad request<br>\n**Error Code:** `1010`<br>\nUser does not belong to this account:{accountId}.<br>\n**Error Code:** `3003`<br>\nYou are not the meeting host.<br>\n* Users in '{0}' have been blocked from joining meetings and webi",
"originalRequest": {
"method": "PATCH",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "topic",
"value": "Ut",
"type": "text"
},
{
"key": "type",
"value": "5",
"type": "text"
},
{
"key": "start_time",
"value": "1995-10-21T14:15:05.149Z",
"type": "text"
},
{
"key": "duration",
"value": "-95998311",
"type": "text"
},
{
"key": "timezone",
"value": "minim eiusmod deserunt",
"type": "text"
},
{
"key": "password",
"value": "E",
"type": "text"
},
{
"key": "agenda",
"value": "culpa dolor eiusmod do",
"type": "text"
},
{
"key": "tracking_fields",
"value": "[{\"field\":\"aute eiusmod nostrud pariatur ut\",\"value\":\"dolore\"},{\"field\":\"proident magna aute\",\"value\":\"Duis anim reprehenderit dolor\"}]",
"type": "text"
},
{
"key": "recurrence",
"value": "{\"type\":3,\"repeat_interval\":53937967,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":1,\"monthly_week_day\":2,\"end_times\":1,\"end_date_time\":\"1997-06-25T08:20:38.136Z\"}",
"type": "text"
},
{
"key": "settings",
"value": "{\"host_video\":false,\"panelists_video\":false,\"practice_session\":false,\"hd_video\":false,\"hd_video_for_attendees\":false,\"send_1080p_video_to_attendees\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":true,\"enforce_login_domains\":\"ex magna enim\",\"alternative_hosts\":\"in dolor ut aute consequat\",\"close_registration\":false,\"show_share_button\":true,\"allow_multiple_devices\":false,\"on_demand\":false,\"global_dial_in_countries\":[\"consequat mollit proident\",\"ut velit\"],\"contact_name\":\"magna quis commodo\",\"contact_email\":\"al\",\"registrants_confirmation_email\":false,\"registrants_restrict_number\":0,\"notify_registrants\":false,\"post_webinar_survey\":false,\"survey_url\":\"incididunt Excepteur sunt\",\"registrants_email_notification\":true,\"meeting_authentication\":false,\"authentication_option\":\"nostrud\",\"authentication_domains\":\"veniam tempor elit et\",\"authentication_name\":\"cupid\",\"question_and_answer\":{\"enable\":true,\"allow_anonymous_questions\":false,\"answer_questions\":\"all\",\"attendees_can_upvote\":true,\"attendees_can_comment\":true},\"email_language\":\"consectetur dolor\",\"panelists_invitation_email_notification\":false,\"attendees_and_panelists_reminder_email_notification\":{\"enable\":false,\"type\":0},\"follow_up_attendees_email_notification\":{\"enable\":true,\"type\":2},\"follow_up_absentees_email_notification\":{\"enable\":true,\"type\":1},\"language_interpretation\":{\"enable\":false,\"interpreters\":[{\"email\":\"R-X@FTJStEpD.fvo\",\"languages\":\"Duis\"},{\"email\":\"Jjc7oaktlr5f@CzDEDCXwntqCU.xpy\",\"languages\":\"ea ad et\"}]}}",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/webinars/:webinarId?occurrence_id=quis officia in reprehenderit",
"host": [
"{{baseUrl}}"
],
"path": [
"webinars",
":webinarId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit"
}
],
"variable": [
{
"key": "webinarId",
"value": "68423085",
"description": "(Required) The webinar's ID."
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "**HTTP Status Code:** `404`<br>\nWebinar not found.<br>\n**Error Code:** `1001`<br>\nUser {userId} does not exist or does not belong to this account.<br>\n**Error Code:** `3001`<br>\nWebinar {webinarId} not found or has expired.<br>",
"originalRequest": {
"method": "PATCH",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "topic",
"value": "Ut",
"type": "text"
},
{
"key": "type",
"value": "5",
"type": "text"
},
{
"key": "start_time",
"value": "1995-10-21T14:15:05.149Z",
"type": "text"
},
{
"key": "duration",
"value": "-95998311",
"type": "text"
},
{
"key": "timezone",
"value": "minim eiusmod deserunt",
"type": "text"
},
{
"key": "password",
"value": "E",
"type": "text"
},
{
"key": "agenda",
"value": "culpa dolor eiusmod do",
"type": "text"
},
{
"key": "tracking_fields",
"value": "[{\"field\":\"aute eiusmod nostrud pariatur ut\",\"value\":\"dolore\"},{\"field\":\"proident magna aute\",\"value\":\"Duis anim reprehenderit dolor\"}]",
"type": "text"
},
{
"key": "recurrence",
"value": "{\"type\":3,\"repeat_interval\":53937967,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":1,\"monthly_week_day\":2,\"end_times\":1,\"end_date_time\":\"1997-06-25T08:20:38.136Z\"}",
"type": "text"
},
{
"key": "settings",
"value": "{\"host_video\":false,\"panelists_video\":false,\"practice_session\":false,\"hd_video\":false,\"hd_video_for_attendees\":false,\"send_1080p_video_to_attendees\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":true,\"enforce_login_domains\":\"ex magna enim\",\"alternative_hosts\":\"in dolor ut aute consequat\",\"close_registration\":false,\"show_share_button\":true,\"allow_multiple_devices\":false,\"on_demand\":false,\"global_dial_in_countries\":[\"consequat mollit proident\",\"ut velit\"],\"contact_name\":\"magna quis commodo\",\"contact_email\":\"al\",\"registrants_confirmation_email\":false,\"registrants_restrict_number\":0,\"notify_registrants\":false,\"post_webinar_survey\":false,\"survey_url\":\"incididunt Excepteur sunt\",\"registrants_email_notification\":true,\"meeting_authentication\":false,\"authentication_option\":\"nostrud\",\"authentication_domains\":\"veniam tempor elit et\",\"authentication_name\":\"cupid\",\"question_and_answer\":{\"enable\":true,\"allow_anonymous_questions\":false,\"answer_questions\":\"all\",\"attendees_can_upvote\":true,\"attendees_can_comment\":true},\"email_language\":\"consectetur dolor\",\"panelists_invitation_email_notification\":false,\"attendees_and_panelists_reminder_email_notification\":{\"enable\":false,\"type\":0},\"follow_up_attendees_email_notification\":{\"enable\":true,\"type\":2},\"follow_up_absentees_email_notification\":{\"enable\":true,\"type\":1},\"language_interpretation\":{\"enable\":false,\"interpreters\":[{\"email\":\"R-X@FTJStEpD.fvo\",\"languages\":\"Duis\"},{\"email\":\"Jjc7oaktlr5f@CzDEDCXwntqCU.xpy\",\"languages\":\"ea ad et\"}]}}",
"type": "text"
}
]
},
"url": {
"raw": "{{baseUrl}}/webinars/:webinarId?occurrence_id=quis officia in reprehenderit",
"host": [
"{{baseUrl}}"
],
"path": [
"webinars",
":webinarId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit"
}
],
"variable": [
{
"key": "webinarId",
"value": "68423085",
"description": "(Required) The webinar's ID."
}
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}