Chilkat Online Tools

C# / Zoom API / Update a meeting

Back to Collection Items

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

Chilkat.Http http = new Chilkat.Http();
bool success;

Chilkat.HttpRequest req = new Chilkat.HttpRequest();
req.HttpVerb = "PATCH";
req.Path = "/";
req.ContentType = "multipart/form-data";
req.AddParam("schedule_for","m");

req.AddParam("topic","messe Duis ipsum");

req.AddParam("","");

req.AddParam("pre_schedule","messe Duis ipsum2false");

req.AddParam("start_time","messe Duis ipsum2false1992-10-04T02:51:46.731Z");

req.AddParam("duration","messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735");

req.AddParam("timezone","messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officia");

req.AddParam("password","messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialabo");

req.AddParam("agenda","messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco et");

req.AddParam("template_id","messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco etproident fugiat consectetur veniam");

req.AddParam("tracking_fields","messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco etproident fugiat consectetur veniam[{\"field\":\"velit voluptate commodo\",\"value\":\"nostrud ea voluptate\"},{\"field\":\"laboris\",\"value\":\"nulla eu\"}]");

req.AddParam("recurrence","messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco etproident fugiat consectetur veniam[{\"field\":\"velit voluptate commodo\",\"value\":\"nostrud ea voluptate\"},{\"field\":\"laboris\",\"value\":\"nulla eu\"}]{\"type\":1,\"repeat_interval\":-41400455,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":3,\"monthly_week_day\":4,\"end_times\":1,\"end_date_time\":\"2010-12-18T09:35:20.268Z\"}");

req.AddParam("settings","messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco etproident fugiat consectetur veniam[{\"field\":\"velit voluptate commodo\",\"value\":\"nostrud ea voluptate\"},{\"field\":\"laboris\",\"value\":\"nulla eu\"}]{\"type\":1,\"repeat_interval\":-41400455,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":3,\"monthly_week_day\":4,\"end_times\":1,\"end_date_time\":\"2010-12-18T09:35:20.268Z\"}{\"host_video\":false,\"participant_video\":true,\"cn_meeting\":false,\"in_meeting\":false,\"join_before_host\":false,\"jbh_time\":0,\"mute_upon_entry\":false,\"watermark\":false,\"use_pmi\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":true,\"enforce_login_domains\":\"ex nostrud commodo\",\"alternative_hosts\":\"sit nisi eiusmod dolore\",\"close_registration\":false,\"waiting_room\":false,\"global_dial_in_countries\":[\"culpa dolore id mollit\",\"in laboris ea do\"],\"global_dial_in_numbers\":[{\"country\":\"irure deserunt velit consequat\",\"country_name\":\"occaecat exercitati\",\"city\":\"adipi\",\"number\":\"ex nostrud et aute in\",\"type\":\"tollfree\"},{\"country\":\"magna labore quis consequat proident\",\"country_name\":\"ut\",\"city\":\"velit amet Duis\",\"number\":\"adipisicing ex\",\"type\":\"toll\"}],\"contact_name\":\"non nulla ni\",\"contact_email\":\"commodo eu cillum\",\"registrants_email_notification\":false,\"registrants_confirmation_email\":false,\"meeting_authentication\":true,\"authentication_option\":\"sint exercita\",\"authentication_domains\":\"dolor voluptate\",\"authentication_name\":\"sunt culpa ullamco\",\"show_share_button\":false,\"allow_multiple_devices\":true,\"encryption_type\":\"enhanced_encryption\",\"approved_or_denied_countries_or_regions\":{\"enable\":false,\"method\":\"deny\",\"approved_list\":[\"aliqua dolore\",\"commodo minim esse dolore\"],\"denied_list\":[\"Lorem pariatur am\",\"ad laboris sed id\"]},\"authentication_exception\":[{\"name\":\"Ut sint elit irure\",\"email\":\"Ga8vZKDeBm@RZbBfjxRFzhtOWuNFGkPNBboVo.rfr\"},{\"name\":\"magna laborum\",\"email\":\"Csa@UQX.hx\"}],\"breakout_room\":{\"enable\":true,\"rooms\":[{\"name\":\"nostrud velit proident ea commodo\",\"participants\":[\"mollit qui\",\"ad consect\"]},{\"name\":\"cupidatat et ut\",\"participants\":[\"deserunt ullamco\",\"consectetur laboris sint commodo\"]}]},\"language_interpretation\":{\"enable\":true,\"interpreters\":[{\"email\":\"5-MsPf6pJSd@IAwgxbaEBQHzgb.wc\",\"languages\":\"officia Ut\"},{\"email\":\"9dx1Z8mm2R7Ki@iCcvDRzOQzcXFuEHp.ccx\",\"languages\":\"laboris sit dolore\"}]},\"custom_keys\":[{\"key\":\"reprehenderit nostru\",\"value\":\"Lorem et exercitation\"},{\"key\":\"et ut adipisicing aute mollit\",\"value\":\"eu aute velit\"}],\"alternative_hosts_email_notification\":true,\"focus_mode\":true,\"private_meeting\":true,\"calendar_type\":2,\"meeting_invitees\":[{\"email\":\"ybkiT6@e.tk\"},{\"email\":\"A1GJyh3MNGm9BJ@klUGbOuBLHUuziUvCt.qg\"}]}");

req.AddHeader("Authorization","Bearer <access_token>");

Chilkat.HttpResponse resp = http.SynchronousRequest("reprehenderit",80,false,req);
if (http.LastMethodSuccess == false) {
    Debug.WriteLine(http.LastErrorText);
    return;
}

int respStatusCode = resp.StatusCode;
Debug.WriteLine("Response Status Code = " + Convert.ToString(respStatusCode));
if (respStatusCode != 204) {
    Debug.WriteLine("Response Header:");
    Debug.WriteLine(resp.Header);
    Debug.WriteLine("Response Body:");
    Debug.WriteLine(resp.BodyStr);
    Debug.WriteLine("Failed.");

    return;
}

Debug.WriteLine("Success.");

Curl Command

curl -X PATCH
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: multipart/form-data"
	--form 'schedule_for=m'
	--form 'topic=messe Duis ipsum'
	--form 'type=messe Duis ipsum2'
	--form 'pre_schedule=messe Duis ipsum2false'
	--form 'start_time=messe Duis ipsum2false1992-10-04T02:51:46.731Z'
	--form 'duration=messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735'
	--form 'timezone=messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officia'
	--form 'password=messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialabo'
	--form 'agenda=messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco et'
	--form 'template_id=messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco etproident fugiat consectetur veniam'
	--form 'tracking_fields=messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco etproident fugiat consectetur veniam[{"field":"velit voluptate commodo","value":"nostrud ea voluptate"},{"field":"laboris","value":"nulla eu"}]'
	--form 'recurrence=messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco etproident fugiat consectetur veniam[{"field":"velit voluptate commodo","value":"nostrud ea voluptate"},{"field":"laboris","value":"nulla eu"}]{"type":1,"repeat_interval":-41400455,"weekly_days":"1","monthly_day":1,"monthly_week":3,"monthly_week_day":4,"end_times":1,"end_date_time":"2010-12-18T09:35:20.268Z"}'
	--form 'settings=messe Duis ipsum2false1992-10-04T02:51:46.731Z25617735non ea labore amet officialaboullamco etproident fugiat consectetur veniam[{"field":"velit voluptate commodo","value":"nostrud ea voluptate"},{"field":"laboris","value":"nulla eu"}]{"type":1,"repeat_interval":-41400455,"weekly_days":"1","monthly_day":1,"monthly_week":3,"monthly_week_day":4,"end_times":1,"end_date_time":"2010-12-18T09:35:20.268Z"}{"host_video":false,"participant_video":true,"cn_meeting":false,"in_meeting":false,"join_before_host":false,"jbh_time":0,"mute_upon_entry":false,"watermark":false,"use_pmi":false,"approval_type":2,"registration_type":1,"audio":"both","auto_recording":"none","enforce_login":true,"enforce_login_domains":"ex nostrud commodo","alternative_hosts":"sit nisi eiusmod dolore","close_registration":false,"waiting_room":false,"global_dial_in_countries":["culpa dolore id mollit","in laboris ea do"],"global_dial_in_numbers":[{"country":"irure deserunt velit consequat","country_name":"occaecat exercitati","city":"adipi","number":"ex nostrud et aute in","type":"tollfree"},{"country":"magna labore quis consequat proident","country_name":"ut","city":"velit amet Duis","number":"adipisicing ex","type":"toll"}],"contact_name":"non nulla ni","contact_email":"commodo eu cillum","registrants_email_notification":false,"registrants_confirmation_email":false,"meeting_authentication":true,"authentication_option":"sint exercita","authentication_domains":"dolor voluptate","authentication_name":"sunt culpa ullamco","show_share_button":false,"allow_multiple_devices":true,"encryption_type":"enhanced_encryption","approved_or_denied_countries_or_regions":{"enable":false,"method":"deny","approved_list":["aliqua dolore","commodo minim esse dolore"],"denied_list":["Lorem pariatur am","ad laboris sed id"]},"authentication_exception":[{"name":"Ut sint elit irure","email":"Ga8vZKDeBm@RZbBfjxRFzhtOWuNFGkPNBboVo.rfr"},{"name":"magna laborum","email":"Csa@UQX.hx"}],"breakout_room":{"enable":true,"rooms":[{"name":"nostrud velit proident ea commodo","participants":["mollit qui","ad consect"]},{"name":"cupidatat et ut","participants":["deserunt ullamco","consectetur laboris sint commodo"]}]},"language_interpretation":{"enable":true,"interpreters":[{"email":"5-MsPf6pJSd@IAwgxbaEBQHzgb.wc","languages":"officia Ut"},{"email":"9dx1Z8mm2R7Ki@iCcvDRzOQzcXFuEHp.ccx","languages":"laboris sit dolore"}]},"custom_keys":[{"key":"reprehenderit nostru","value":"Lorem et exercitation"},{"key":"et ut adipisicing aute mollit","value":"eu aute velit"}],"alternative_hosts_email_notification":true,"focus_mode":true,"private_meeting":true,"calendar_type":2,"meeting_invitees":[{"email":"ybkiT6@e.tk"},{"email":"A1GJyh3MNGm9BJ@klUGbOuBLHUuziUvCt.qg"}]}'
https://api.zoom.us/v2/meetings/:meetingId?occurrence_id=quis officia in reprehenderit

Postman Collection Item JSON

{
  "name": "Update a meeting",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "PATCH",
    "header": [
      {
        "key": "Content-Type",
        "value": "multipart/form-data"
      }
    ],
    "body": {
      "mode": "formdata",
      "formdata": [
        {
          "key": "schedule_for",
          "value": "m",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "topic",
          "value": "esse Duis ipsum",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "type",
          "value": "2",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "pre_schedule",
          "value": "false",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "start_time",
          "value": "1992-10-04T02:51:46.731Z",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "duration",
          "value": "25617735",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "timezone",
          "value": "non ea labore amet officia",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "password",
          "value": "labo",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "agenda",
          "value": "ullamco et",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "template_id",
          "value": "proident fugiat consectetur veniam",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "tracking_fields",
          "value": "[{\"field\":\"velit voluptate commodo\",\"value\":\"nostrud ea voluptate\"},{\"field\":\"laboris\",\"value\":\"nulla eu\"}]",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "recurrence",
          "value": "{\"type\":1,\"repeat_interval\":-41400455,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":3,\"monthly_week_day\":4,\"end_times\":1,\"end_date_time\":\"2010-12-18T09:35:20.268Z\"}",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "settings",
          "value": "{\"host_video\":false,\"participant_video\":true,\"cn_meeting\":false,\"in_meeting\":false,\"join_before_host\":false,\"jbh_time\":0,\"mute_upon_entry\":false,\"watermark\":false,\"use_pmi\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":true,\"enforce_login_domains\":\"ex nostrud commodo\",\"alternative_hosts\":\"sit nisi eiusmod dolore\",\"close_registration\":false,\"waiting_room\":false,\"global_dial_in_countries\":[\"culpa dolore id mollit\",\"in laboris ea do\"],\"global_dial_in_numbers\":[{\"country\":\"irure deserunt velit consequat\",\"country_name\":\"occaecat exercitati\",\"city\":\"adipi\",\"number\":\"ex nostrud et aute in\",\"type\":\"tollfree\"},{\"country\":\"magna labore quis consequat proident\",\"country_name\":\"ut\",\"city\":\"velit amet Duis\",\"number\":\"adipisicing ex\",\"type\":\"toll\"}],\"contact_name\":\"non nulla ni\",\"contact_email\":\"commodo eu cillum\",\"registrants_email_notification\":false,\"registrants_confirmation_email\":false,\"meeting_authentication\":true,\"authentication_option\":\"sint exercita\",\"authentication_domains\":\"dolor voluptate\",\"authentication_name\":\"sunt culpa ullamco\",\"show_share_button\":false,\"allow_multiple_devices\":true,\"encryption_type\":\"enhanced_encryption\",\"approved_or_denied_countries_or_regions\":{\"enable\":false,\"method\":\"deny\",\"approved_list\":[\"aliqua dolore\",\"commodo minim esse dolore\"],\"denied_list\":[\"Lorem pariatur am\",\"ad laboris sed id\"]},\"authentication_exception\":[{\"name\":\"Ut sint elit irure\",\"email\":\"Ga8vZKDeBm@RZbBfjxRFzhtOWuNFGkPNBboVo.rfr\"},{\"name\":\"magna laborum\",\"email\":\"Csa@UQX.hx\"}],\"breakout_room\":{\"enable\":true,\"rooms\":[{\"name\":\"nostrud velit proident ea commodo\",\"participants\":[\"mollit qui\",\"ad consect\"]},{\"name\":\"cupidatat et ut\",\"participants\":[\"deserunt ullamco\",\"consectetur laboris sint commodo\"]}]},\"language_interpretation\":{\"enable\":true,\"interpreters\":[{\"email\":\"5-MsPf6pJSd@IAwgxbaEBQHzgb.wc\",\"languages\":\"officia Ut\"},{\"email\":\"9dx1Z8mm2R7Ki@iCcvDRzOQzcXFuEHp.ccx\",\"languages\":\"laboris sit dolore\"}]},\"custom_keys\":[{\"key\":\"reprehenderit nostru\",\"value\":\"Lorem et exercitation\"},{\"key\":\"et ut adipisicing aute mollit\",\"value\":\"eu aute velit\"}],\"alternative_hosts_email_notification\":true,\"focus_mode\":true,\"private_meeting\":true,\"calendar_type\":2,\"meeting_invitees\":[{\"email\":\"ybkiT6@e.tk\"},{\"email\":\"A1GJyh3MNGm9BJ@klUGbOuBLHUuziUvCt.qg\"}]}",
          "description": "undefined",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{baseUrl}}/meetings/:meetingId?occurrence_id=quis officia in reprehenderit",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "meetings",
        ":meetingId"
      ],
      "query": [
        {
          "key": "occurrence_id",
          "value": "quis officia in reprehenderit",
          "description": "Meeting occurrence id. Support change of agenda, start_time, duration, settings: {host_video, participant_video, join_before_host, mute_upon_entry, waiting_room, watermark, auto_recording}"
        }
      ],
      "variable": [
        {
          "key": "meetingId",
          "value": "68423085",
          "description": "(Required) The meeting's ID. \n\n When storing this value in your database, you must store it as a **long** format integer and **not** an integer. Meeting IDs can exceed 10 digits."
        }
      ]
    },
    "description": "Use this API to update a meeting's details.\n\n**Note:** \n* This API has a rate limit of **100 requests per day**. Because of this, a meeting can only be updated for a maximum of **100 times within a 24-hour period**. \n* The `start_time` value **must** be a future date. If the value is omitted or a date in the past, the API ignores this value and will **not** update any recurring meetings. \n* If the `start_time` value is a future date, the `recurrence` object is **required**.\n\n**Scopes:** `meeting:write:admin`, `meeting:write`</br>**[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light`"
  },
  "response": [
    {
      "name": "**HTTP Status Code:** `204`<br>\nMeeting updated.",
      "originalRequest": {
        "method": "PATCH",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "schedule_for",
              "value": "est",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "topic",
              "value": "non quis officia dolor est",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "type",
              "value": "2",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "pre_schedule",
              "value": "false",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "start_time",
              "value": "1985-03-28T02:34:30.005Z",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "duration",
              "value": "30853813",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "timezone",
              "value": "voluptate consectetur",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "password",
              "value": "proiden",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "agenda",
              "value": "do proident",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "template_id",
              "value": "Excepteur ex cillum sint ullamco",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "tracking_fields",
              "value": "[{\"field\":\"elit qui Excepteur cillum\",\"value\":\"officia\"},{\"field\":\"in officia\",\"value\":\"id elit ea et ad\"}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "recurrence",
              "value": "{\"type\":1,\"repeat_interval\":-8033524,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":4,\"monthly_week_day\":2,\"end_times\":1,\"end_date_time\":\"1996-05-17T17:11:01.215Z\"}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "settings",
              "value": "{\"host_video\":true,\"participant_video\":false,\"cn_meeting\":false,\"in_meeting\":false,\"join_before_host\":false,\"jbh_time\":0,\"mute_upon_entry\":false,\"watermark\":false,\"use_pmi\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":false,\"enforce_login_domains\":\"veniam\",\"alternative_hosts\":\"ad in sit\",\"close_registration\":false,\"waiting_room\":false,\"global_dial_in_countries\":[\"minim deserunt qui aliqua\",\"minim\"],\"global_dial_in_numbers\":[{\"country\":\"Excepteur enim proident\",\"country_name\":\"tempor sunt\",\"city\":\"\",\"number\":\"commodo\",\"type\":\"toll\"},{\"country\":\"et\",\"country_name\":\"nostrud elit nulla\",\"city\":\"irure quis Lorem o\",\"number\":\"occaecat nostrud\",\"type\":\"toll\"}],\"contact_name\":\"officia tempor\",\"contact_email\":\"q\",\"registrants_email_notification\":true,\"registrants_confirmation_email\":false,\"meeting_authentication\":false,\"authentication_option\":\"Lorem proide\",\"authentication_domains\":\"pariatur anim sint\",\"authentication_name\":\"est\",\"show_share_button\":true,\"allow_multiple_devices\":false,\"encryption_type\":\"e2ee\",\"approved_or_denied_countries_or_regions\":{\"enable\":true,\"method\":\"deny\",\"approved_list\":[\"incididunt aliqua ad\",\"in labore cupidatat mollit voluptate\"],\"denied_list\":[\"do i\",\"ut est nostrud\"]},\"authentication_exception\":[{\"name\":\"aliqua culpa\",\"email\":\"D5rYGY@HNrgIW.vhqe\"},{\"name\":\"voluptate aliquip \",\"email\":\"FKqP@xkdZnTexUbqaa.agrb\"}],\"breakout_room\":{\"enable\":true,\"rooms\":[{\"name\":\"veniam amet commodo\",\"participants\":[\"qui Lorem ullamco irure\",\"incididunt\"]},{\"name\":\"occaecat do nulla veniam\",\"participants\":[\"nostrud dolore\",\"in\"]}]},\"language_interpretation\":{\"enable\":false,\"interpreters\":[{\"email\":\"6DY@AJzkSBmoBVNwBAvl.dbq\",\"languages\":\"dolore\"},{\"email\":\"mx1GqjzZ84h@xCdDmxVHtdawHIi.uk\",\"languages\":\"sed in\"}]},\"custom_keys\":[{\"key\":\"ull\",\"value\":\"sed eu\"},{\"key\":\"do si\",\"value\":\"sunt\"}],\"alternative_hosts_email_notification\":true,\"focus_mode\":false,\"private_meeting\":false,\"calendar_type\":1,\"meeting_invitees\":[{\"email\":\"seIcQvfKl-W@FiSwQdJIunP.pj\"},{\"email\":\"qT9jO@WkjH.gn\"}]}",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/meetings/:meetingId?occurrence_id=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "meetings",
            ":meetingId"
          ],
          "query": [
            {
              "key": "occurrence_id",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "meetingId",
              "value": "68423085",
              "description": "(Required) The meeting's ID. \n\n When storing this value in your database, you must store it as a **long** format integer and **not** an integer. Meeting IDs can exceed 10 digits."
            }
          ]
        }
      },
      "status": "No Content",
      "code": 204,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "**Error Code:** `300`<br>\nInvalid enforce_login_domains, separate multiple domains by semicolon.<br>\nA maximum of {rateLimitNumber} meetings can be created/updated for a single user in one day.\n",
      "originalRequest": {
        "method": "PATCH",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "schedule_for",
              "value": "est",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "topic",
              "value": "non quis officia dolor est",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "type",
              "value": "2",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "pre_schedule",
              "value": "false",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "start_time",
              "value": "1985-03-28T02:34:30.005Z",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "duration",
              "value": "30853813",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "timezone",
              "value": "voluptate consectetur",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "password",
              "value": "proiden",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "agenda",
              "value": "do proident",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "template_id",
              "value": "Excepteur ex cillum sint ullamco",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "tracking_fields",
              "value": "[{\"field\":\"elit qui Excepteur cillum\",\"value\":\"officia\"},{\"field\":\"in officia\",\"value\":\"id elit ea et ad\"}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "recurrence",
              "value": "{\"type\":1,\"repeat_interval\":-8033524,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":4,\"monthly_week_day\":2,\"end_times\":1,\"end_date_time\":\"1996-05-17T17:11:01.215Z\"}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "settings",
              "value": "{\"host_video\":true,\"participant_video\":false,\"cn_meeting\":false,\"in_meeting\":false,\"join_before_host\":false,\"jbh_time\":0,\"mute_upon_entry\":false,\"watermark\":false,\"use_pmi\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":false,\"enforce_login_domains\":\"veniam\",\"alternative_hosts\":\"ad in sit\",\"close_registration\":false,\"waiting_room\":false,\"global_dial_in_countries\":[\"minim deserunt qui aliqua\",\"minim\"],\"global_dial_in_numbers\":[{\"country\":\"Excepteur enim proident\",\"country_name\":\"tempor sunt\",\"city\":\"\",\"number\":\"commodo\",\"type\":\"toll\"},{\"country\":\"et\",\"country_name\":\"nostrud elit nulla\",\"city\":\"irure quis Lorem o\",\"number\":\"occaecat nostrud\",\"type\":\"toll\"}],\"contact_name\":\"officia tempor\",\"contact_email\":\"q\",\"registrants_email_notification\":true,\"registrants_confirmation_email\":false,\"meeting_authentication\":false,\"authentication_option\":\"Lorem proide\",\"authentication_domains\":\"pariatur anim sint\",\"authentication_name\":\"est\",\"show_share_button\":true,\"allow_multiple_devices\":false,\"encryption_type\":\"e2ee\",\"approved_or_denied_countries_or_regions\":{\"enable\":true,\"method\":\"deny\",\"approved_list\":[\"incididunt aliqua ad\",\"in labore cupidatat mollit voluptate\"],\"denied_list\":[\"do i\",\"ut est nostrud\"]},\"authentication_exception\":[{\"name\":\"aliqua culpa\",\"email\":\"D5rYGY@HNrgIW.vhqe\"},{\"name\":\"voluptate aliquip \",\"email\":\"FKqP@xkdZnTexUbqaa.agrb\"}],\"breakout_room\":{\"enable\":true,\"rooms\":[{\"name\":\"veniam amet commodo\",\"participants\":[\"qui Lorem ullamco irure\",\"incididunt\"]},{\"name\":\"occaecat do nulla veniam\",\"participants\":[\"nostrud dolore\",\"in\"]}]},\"language_interpretation\":{\"enable\":false,\"interpreters\":[{\"email\":\"6DY@AJzkSBmoBVNwBAvl.dbq\",\"languages\":\"dolore\"},{\"email\":\"mx1GqjzZ84h@xCdDmxVHtdawHIi.uk\",\"languages\":\"sed in\"}]},\"custom_keys\":[{\"key\":\"ull\",\"value\":\"sed eu\"},{\"key\":\"do si\",\"value\":\"sunt\"}],\"alternative_hosts_email_notification\":true,\"focus_mode\":false,\"private_meeting\":false,\"calendar_type\":1,\"meeting_invitees\":[{\"email\":\"seIcQvfKl-W@FiSwQdJIunP.pj\"},{\"email\":\"qT9jO@WkjH.gn\"}]}",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/meetings/:meetingId?occurrence_id=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "meetings",
            ":meetingId"
          ],
          "query": [
            {
              "key": "occurrence_id",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "meetingId",
              "value": "68423085",
              "description": "(Required) The meeting's ID. \n\n When storing this value in your database, you must store it as a **long** format integer and **not** an integer. Meeting IDs can exceed 10 digits."
            }
          ]
        }
      },
      "status": "Multiple Choices",
      "code": 300,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "**HTTP Status Code:** `400`<br>\n**Error Code:** `1010`<br>\nUser not found on this account: {accountId}.<br>\n**Error Code:** `3000`<br>\nCannot access meeting information.<br>\n**Error Code:** `3003`<br>\nYou are not the meeting host.<br>\n**Error Code:** `300",
      "originalRequest": {
        "method": "PATCH",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "schedule_for",
              "value": "est",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "topic",
              "value": "non quis officia dolor est",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "type",
              "value": "2",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "pre_schedule",
              "value": "false",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "start_time",
              "value": "1985-03-28T02:34:30.005Z",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "duration",
              "value": "30853813",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "timezone",
              "value": "voluptate consectetur",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "password",
              "value": "proiden",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "agenda",
              "value": "do proident",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "template_id",
              "value": "Excepteur ex cillum sint ullamco",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "tracking_fields",
              "value": "[{\"field\":\"elit qui Excepteur cillum\",\"value\":\"officia\"},{\"field\":\"in officia\",\"value\":\"id elit ea et ad\"}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "recurrence",
              "value": "{\"type\":1,\"repeat_interval\":-8033524,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":4,\"monthly_week_day\":2,\"end_times\":1,\"end_date_time\":\"1996-05-17T17:11:01.215Z\"}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "settings",
              "value": "{\"host_video\":true,\"participant_video\":false,\"cn_meeting\":false,\"in_meeting\":false,\"join_before_host\":false,\"jbh_time\":0,\"mute_upon_entry\":false,\"watermark\":false,\"use_pmi\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":false,\"enforce_login_domains\":\"veniam\",\"alternative_hosts\":\"ad in sit\",\"close_registration\":false,\"waiting_room\":false,\"global_dial_in_countries\":[\"minim deserunt qui aliqua\",\"minim\"],\"global_dial_in_numbers\":[{\"country\":\"Excepteur enim proident\",\"country_name\":\"tempor sunt\",\"city\":\"\",\"number\":\"commodo\",\"type\":\"toll\"},{\"country\":\"et\",\"country_name\":\"nostrud elit nulla\",\"city\":\"irure quis Lorem o\",\"number\":\"occaecat nostrud\",\"type\":\"toll\"}],\"contact_name\":\"officia tempor\",\"contact_email\":\"q\",\"registrants_email_notification\":true,\"registrants_confirmation_email\":false,\"meeting_authentication\":false,\"authentication_option\":\"Lorem proide\",\"authentication_domains\":\"pariatur anim sint\",\"authentication_name\":\"est\",\"show_share_button\":true,\"allow_multiple_devices\":false,\"encryption_type\":\"e2ee\",\"approved_or_denied_countries_or_regions\":{\"enable\":true,\"method\":\"deny\",\"approved_list\":[\"incididunt aliqua ad\",\"in labore cupidatat mollit voluptate\"],\"denied_list\":[\"do i\",\"ut est nostrud\"]},\"authentication_exception\":[{\"name\":\"aliqua culpa\",\"email\":\"D5rYGY@HNrgIW.vhqe\"},{\"name\":\"voluptate aliquip \",\"email\":\"FKqP@xkdZnTexUbqaa.agrb\"}],\"breakout_room\":{\"enable\":true,\"rooms\":[{\"name\":\"veniam amet commodo\",\"participants\":[\"qui Lorem ullamco irure\",\"incididunt\"]},{\"name\":\"occaecat do nulla veniam\",\"participants\":[\"nostrud dolore\",\"in\"]}]},\"language_interpretation\":{\"enable\":false,\"interpreters\":[{\"email\":\"6DY@AJzkSBmoBVNwBAvl.dbq\",\"languages\":\"dolore\"},{\"email\":\"mx1GqjzZ84h@xCdDmxVHtdawHIi.uk\",\"languages\":\"sed in\"}]},\"custom_keys\":[{\"key\":\"ull\",\"value\":\"sed eu\"},{\"key\":\"do si\",\"value\":\"sunt\"}],\"alternative_hosts_email_notification\":true,\"focus_mode\":false,\"private_meeting\":false,\"calendar_type\":1,\"meeting_invitees\":[{\"email\":\"seIcQvfKl-W@FiSwQdJIunP.pj\"},{\"email\":\"qT9jO@WkjH.gn\"}]}",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/meetings/:meetingId?occurrence_id=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "meetings",
            ":meetingId"
          ],
          "query": [
            {
              "key": "occurrence_id",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "meetingId",
              "value": "68423085",
              "description": "(Required) The meeting's ID. \n\n When storing this value in your database, you must store it as a **long** format integer and **not** an integer. Meeting IDs can exceed 10 digits."
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "**HTTP Status Code:** `404`<br>\nMeeting not found.<br>\n**Error Code:** `1001`<br>\nUser does not exist: {userId}.<br>\n**Error Code:** `3001`<br>\nA meeting with this {meetingId} is not found or has expired.",
      "originalRequest": {
        "method": "PATCH",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "schedule_for",
              "value": "est",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "topic",
              "value": "non quis officia dolor est",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "type",
              "value": "2",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "pre_schedule",
              "value": "false",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "start_time",
              "value": "1985-03-28T02:34:30.005Z",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "duration",
              "value": "30853813",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "timezone",
              "value": "voluptate consectetur",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "password",
              "value": "proiden",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "agenda",
              "value": "do proident",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "template_id",
              "value": "Excepteur ex cillum sint ullamco",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "tracking_fields",
              "value": "[{\"field\":\"elit qui Excepteur cillum\",\"value\":\"officia\"},{\"field\":\"in officia\",\"value\":\"id elit ea et ad\"}]",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "recurrence",
              "value": "{\"type\":1,\"repeat_interval\":-8033524,\"weekly_days\":\"1\",\"monthly_day\":1,\"monthly_week\":4,\"monthly_week_day\":2,\"end_times\":1,\"end_date_time\":\"1996-05-17T17:11:01.215Z\"}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "settings",
              "value": "{\"host_video\":true,\"participant_video\":false,\"cn_meeting\":false,\"in_meeting\":false,\"join_before_host\":false,\"jbh_time\":0,\"mute_upon_entry\":false,\"watermark\":false,\"use_pmi\":false,\"approval_type\":2,\"registration_type\":1,\"audio\":\"both\",\"auto_recording\":\"none\",\"enforce_login\":false,\"enforce_login_domains\":\"veniam\",\"alternative_hosts\":\"ad in sit\",\"close_registration\":false,\"waiting_room\":false,\"global_dial_in_countries\":[\"minim deserunt qui aliqua\",\"minim\"],\"global_dial_in_numbers\":[{\"country\":\"Excepteur enim proident\",\"country_name\":\"tempor sunt\",\"city\":\"\",\"number\":\"commodo\",\"type\":\"toll\"},{\"country\":\"et\",\"country_name\":\"nostrud elit nulla\",\"city\":\"irure quis Lorem o\",\"number\":\"occaecat nostrud\",\"type\":\"toll\"}],\"contact_name\":\"officia tempor\",\"contact_email\":\"q\",\"registrants_email_notification\":true,\"registrants_confirmation_email\":false,\"meeting_authentication\":false,\"authentication_option\":\"Lorem proide\",\"authentication_domains\":\"pariatur anim sint\",\"authentication_name\":\"est\",\"show_share_button\":true,\"allow_multiple_devices\":false,\"encryption_type\":\"e2ee\",\"approved_or_denied_countries_or_regions\":{\"enable\":true,\"method\":\"deny\",\"approved_list\":[\"incididunt aliqua ad\",\"in labore cupidatat mollit voluptate\"],\"denied_list\":[\"do i\",\"ut est nostrud\"]},\"authentication_exception\":[{\"name\":\"aliqua culpa\",\"email\":\"D5rYGY@HNrgIW.vhqe\"},{\"name\":\"voluptate aliquip \",\"email\":\"FKqP@xkdZnTexUbqaa.agrb\"}],\"breakout_room\":{\"enable\":true,\"rooms\":[{\"name\":\"veniam amet commodo\",\"participants\":[\"qui Lorem ullamco irure\",\"incididunt\"]},{\"name\":\"occaecat do nulla veniam\",\"participants\":[\"nostrud dolore\",\"in\"]}]},\"language_interpretation\":{\"enable\":false,\"interpreters\":[{\"email\":\"6DY@AJzkSBmoBVNwBAvl.dbq\",\"languages\":\"dolore\"},{\"email\":\"mx1GqjzZ84h@xCdDmxVHtdawHIi.uk\",\"languages\":\"sed in\"}]},\"custom_keys\":[{\"key\":\"ull\",\"value\":\"sed eu\"},{\"key\":\"do si\",\"value\":\"sunt\"}],\"alternative_hosts_email_notification\":true,\"focus_mode\":false,\"private_meeting\":false,\"calendar_type\":1,\"meeting_invitees\":[{\"email\":\"seIcQvfKl-W@FiSwQdJIunP.pj\"},{\"email\":\"qT9jO@WkjH.gn\"}]}",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/meetings/:meetingId?occurrence_id=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "meetings",
            ":meetingId"
          ],
          "query": [
            {
              "key": "occurrence_id",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "meetingId",
              "value": "68423085",
              "description": "(Required) The meeting's ID. \n\n When storing this value in your database, you must store it as a **long** format integer and **not** an integer. Meeting IDs can exceed 10 digits."
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}