Chilkat Online Tools

SQL Server / Zoom API / Update a meeting survey

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
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

    DECLARE @req int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.HttpRequest', @req OUT

    EXEC sp_OASetProperty @req, 'HttpVerb', 'PATCH'
    EXEC sp_OASetProperty @req, 'Path', '/v2/meetings/:meetingId/survey'
    EXEC sp_OASetProperty @req, 'ContentType', 'multipart/form-data'
    EXEC sp_OAMethod @req, 'AddParam', NULL, 'third_party_survey', 'consequ'

    EXEC sp_OAMethod @req, 'AddParam', NULL, 'custom_survey', 'consequ{"anonymous":false,"questions":[{"name":"sit veniam sint tempor","type":"rating_scale","show_as_dropdown":false,"answer_required":false,"answers":["adipisicing","labore sunt"],"answer_min_character":93150996,"answer_max_character":55152689,"rating_min_value":24082607,"rating_max_value":-38991075,"rating_min_label":"ipsum sint","rating_max_label":"culpa amet do eiusmod"},{"name":"aliquip labore amet dolore","type":"rating_scale","show_as_dropdown":false,"answer_required":false,"answers":["nis","irure nisi reprehenderit veniam su"],"answer_min_character":74190569,"answer_max_character":-139512,"rating_min_value":12745345,"rating_max_value":-45231118,"rating_min_label":"in consectetur","rating_max_label":"in nisi deserunt commodo"}]}'

    EXEC sp_OAMethod @req, 'AddParam', NULL, 'show_in_the_browser', 'consequ{"anonymous":false,"questions":[{"name":"sit veniam sint tempor","type":"rating_scale","show_as_dropdown":false,"answer_required":false,"answers":["adipisicing","labore sunt"],"answer_min_character":93150996,"answer_max_character":55152689,"rating_min_value":24082607,"rating_max_value":-38991075,"rating_min_label":"ipsum sint","rating_max_label":"culpa amet do eiusmod"},{"name":"aliquip labore amet dolore","type":"rating_scale","show_as_dropdown":false,"answer_required":false,"answers":["nis","irure nisi reprehenderit veniam su"],"answer_min_character":74190569,"answer_max_character":-139512,"rating_min_value":12745345,"rating_max_value":-45231118,"rating_min_label":"in consectetur","rating_max_label":"in nisi deserunt commodo"}]}true'

    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Authorization', 'Bearer <access_token>'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'SynchronousRequest', @resp OUT, 'api.zoom.us', 443, 1, @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

    DECLARE @respStatusCode int
    EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT

    PRINT 'Response Status Code = ' + @respStatusCode
    IF @respStatusCode <> 204
      BEGIN

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Response Body:'
        EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
        PRINT @sTmp0

        PRINT 'Failed.'
        EXEC @hr = sp_OADestroy @resp

        EXEC @hr = sp_OADestroy @http
        EXEC @hr = sp_OADestroy @req
        RETURN
      END
    EXEC @hr = sp_OADestroy @resp


    PRINT 'Success.'

    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 'third_party_survey=consequ'
	--form 'custom_survey=consequ{"anonymous":false,"questions":[{"name":"sit veniam sint tempor","type":"rating_scale","show_as_dropdown":false,"answer_required":false,"answers":["adipisicing","labore sunt"],"answer_min_character":93150996,"answer_max_character":55152689,"rating_min_value":24082607,"rating_max_value":-38991075,"rating_min_label":"ipsum sint","rating_max_label":"culpa amet do eiusmod"},{"name":"aliquip labore amet dolore","type":"rating_scale","show_as_dropdown":false,"answer_required":false,"answers":["nis","irure nisi reprehenderit veniam su"],"answer_min_character":74190569,"answer_max_character":-139512,"rating_min_value":12745345,"rating_max_value":-45231118,"rating_min_label":"in consectetur","rating_max_label":"in nisi deserunt commodo"}]}'
	--form 'show_in_the_browser=consequ{"anonymous":false,"questions":[{"name":"sit veniam sint tempor","type":"rating_scale","show_as_dropdown":false,"answer_required":false,"answers":["adipisicing","labore sunt"],"answer_min_character":93150996,"answer_max_character":55152689,"rating_min_value":24082607,"rating_max_value":-38991075,"rating_min_label":"ipsum sint","rating_max_label":"culpa amet do eiusmod"},{"name":"aliquip labore amet dolore","type":"rating_scale","show_as_dropdown":false,"answer_required":false,"answers":["nis","irure nisi reprehenderit veniam su"],"answer_min_character":74190569,"answer_max_character":-139512,"rating_min_value":12745345,"rating_max_value":-45231118,"rating_min_label":"in consectetur","rating_max_label":"in nisi deserunt commodo"}]}true'
https://api.zoom.us/v2/meetings/:meetingId/survey

Postman Collection Item JSON

{
  "name": "Update a meeting survey",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "PATCH",
    "header": [
      {
        "key": "Content-Type",
        "value": "multipart/form-data"
      }
    ],
    "body": {
      "mode": "formdata",
      "formdata": [
        {
          "key": "third_party_survey",
          "value": "consequ",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "custom_survey",
          "value": "{\"anonymous\":false,\"questions\":[{\"name\":\"sit veniam sint tempor\",\"type\":\"rating_scale\",\"show_as_dropdown\":false,\"answer_required\":false,\"answers\":[\"adipisicing\",\"labore sunt\"],\"answer_min_character\":93150996,\"answer_max_character\":55152689,\"rating_min_value\":24082607,\"rating_max_value\":-38991075,\"rating_min_label\":\"ipsum sint\",\"rating_max_label\":\"culpa amet do eiusmod\"},{\"name\":\"aliquip labore amet dolore\",\"type\":\"rating_scale\",\"show_as_dropdown\":false,\"answer_required\":false,\"answers\":[\"nis\",\"irure nisi reprehenderit veniam su\"],\"answer_min_character\":74190569,\"answer_max_character\":-139512,\"rating_min_value\":12745345,\"rating_max_value\":-45231118,\"rating_min_label\":\"in consectetur\",\"rating_max_label\":\"in nisi deserunt commodo\"}]}",
          "description": "undefined",
          "type": "text"
        },
        {
          "key": "show_in_the_browser",
          "value": "true",
          "description": "undefined",
          "type": "text"
        }
      ]
    },
    "url": {
      "raw": "{{baseUrl}}/meetings/:meetingId/survey",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "meetings",
        ":meetingId",
        "survey"
      ],
      "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 survey](https://support.zoom.us/hc/en-us/articles/4404969060621-Post-meeting-survey-and-reporting). \n\n **Scopes:** `meeting:write`, `meeting:write:admin` <br> **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light` \n\n **Prerequisites:** \n* The host must be a **Pro** user type. \n* The [**Meeting Survey**](https://support.zoom.us/hc/en-us/articles/4404939095053-Enabling-meeting-surveys) feature enabled in the host's account. \n* The meeting must be a scheduled meeting. Instant meetings do not have survey features enabled."
  },
  "response": [
    {
      "name": "**HTTP Status Code:** `204` <br>\n Meeting survey updated.",
      "originalRequest": {
        "method": "PATCH",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "third_party_survey",
              "value": "labo",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "custom_survey",
              "value": "{\"anonymous\":false,\"questions\":[{\"name\":\"c\",\"type\":\"single\",\"show_as_dropdown\":false,\"answer_required\":false,\"answers\":[\"ipsum in\",\"Excepteur dolore tempor\"],\"answer_min_character\":59714976,\"answer_max_character\":-85740401,\"rating_min_value\":32810652,\"rating_max_value\":-26694597,\"rating_min_label\":\"ex do sunt\",\"rating_max_label\":\"veniam officia laborum qui culpa\"},{\"name\":\"occaecat pariatur sint\",\"type\":\"single\",\"show_as_dropdown\":false,\"answer_required\":false,\"answers\":[\"ullamco dolor tempor in\",\"adipisicing exercitation\"],\"answer_min_character\":14373402,\"answer_max_character\":-93427197,\"rating_min_value\":51576458,\"rating_max_value\":-41859939,\"rating_min_label\":\"aliquip laboris\",\"rating_max_label\":\"sed culpa\"}]}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "show_in_the_browser",
              "value": "true",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/meetings/:meetingId/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "meetings",
            ":meetingId",
            "survey"
          ],
          "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": "**HTTP Status Code:** `400` <br> Bad Request \n\n **Error Code:** `300` <br>\n * Invalid meeting ID. <br>\n * Invalid third party survey: {third_party_survey}. \n\n **Error Code:** `3000` <br>\n * Cannot access Webinar information. <br>\n * Meeting survey disable",
      "originalRequest": {
        "method": "PATCH",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "third_party_survey",
              "value": "labo",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "custom_survey",
              "value": "{\"anonymous\":false,\"questions\":[{\"name\":\"c\",\"type\":\"single\",\"show_as_dropdown\":false,\"answer_required\":false,\"answers\":[\"ipsum in\",\"Excepteur dolore tempor\"],\"answer_min_character\":59714976,\"answer_max_character\":-85740401,\"rating_min_value\":32810652,\"rating_max_value\":-26694597,\"rating_min_label\":\"ex do sunt\",\"rating_max_label\":\"veniam officia laborum qui culpa\"},{\"name\":\"occaecat pariatur sint\",\"type\":\"single\",\"show_as_dropdown\":false,\"answer_required\":false,\"answers\":[\"ullamco dolor tempor in\",\"adipisicing exercitation\"],\"answer_min_character\":14373402,\"answer_max_character\":-93427197,\"rating_min_value\":51576458,\"rating_max_value\":-41859939,\"rating_min_label\":\"aliquip laboris\",\"rating_max_label\":\"sed culpa\"}]}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "show_in_the_browser",
              "value": "true",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/meetings/:meetingId/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "meetings",
            ":meetingId",
            "survey"
          ],
          "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> Not Found \n\n **Error Code:** `300` <br>\n Meeting ID does not exist. \n\n **Error Code:** `3001` <br>\n Meeting does not exist: {meetingId}.",
      "originalRequest": {
        "method": "PATCH",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "body": {
          "mode": "formdata",
          "formdata": [
            {
              "key": "third_party_survey",
              "value": "labo",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "custom_survey",
              "value": "{\"anonymous\":false,\"questions\":[{\"name\":\"c\",\"type\":\"single\",\"show_as_dropdown\":false,\"answer_required\":false,\"answers\":[\"ipsum in\",\"Excepteur dolore tempor\"],\"answer_min_character\":59714976,\"answer_max_character\":-85740401,\"rating_min_value\":32810652,\"rating_max_value\":-26694597,\"rating_min_label\":\"ex do sunt\",\"rating_max_label\":\"veniam officia laborum qui culpa\"},{\"name\":\"occaecat pariatur sint\",\"type\":\"single\",\"show_as_dropdown\":false,\"answer_required\":false,\"answers\":[\"ullamco dolor tempor in\",\"adipisicing exercitation\"],\"answer_min_character\":14373402,\"answer_max_character\":-93427197,\"rating_min_value\":51576458,\"rating_max_value\":-41859939,\"rating_min_label\":\"aliquip laboris\",\"rating_max_label\":\"sed culpa\"}]}",
              "description": "undefined",
              "type": "text"
            },
            {
              "key": "show_in_the_browser",
              "value": "true",
              "description": "undefined",
              "type": "text"
            }
          ]
        },
        "url": {
          "raw": "{{baseUrl}}/meetings/:meetingId/survey",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "meetings",
            ":meetingId",
            "survey"
          ],
          "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": ""
    }
  ]
}