Chilkat Online Tools

C / Zoom API / Get webinar absentees

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
#include <C_CkStringBuilder.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonObject queryParams;
    HCkHttpResponse resp;
    HCkStringBuilder sbResponseBody;
    HCkJsonObject jResp;
    int respStatusCode;
    const char *id;
    const char *email;
    const char *first_name;
    const char *last_name;
    const char *address;
    const char *city;
    const char *country;
    const char *zip;
    const char *state;
    const char *phone;
    const char *industry;
    const char *org;
    const char *job_title;
    const char *purchasing_time_frame;
    const char *role_in_purchase_process;
    const char *no_of_employees;
    const char *comments;
    const char *status;
    const char *create_time;
    const char *join_url;
    int j;
    int count_j;
    const char *title;
    const char *value;
    int page_count;
    int page_number;
    int page_size;
    int total_records;
    int i;
    int count_i;

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

    http = CkHttp_Create();

    queryParams = CkJsonObject_Create();
    CkJsonObject_UpdateString(queryParams,"occurrence_id","quis officia in reprehenderit");
    CkJsonObject_UpdateInt(queryParams,"page_size",30);
    CkJsonObject_UpdateString(queryParams,"next_page_token","quis officia in reprehenderit");

    // Adds the "Authorization: Bearer <access_token>" header.
    CkHttp_putAuthToken(http,"<access_token>");

    resp = CkHttp_QuickRequestParams(http,"GET","https://api.zoom.us/v2/past_webinars/:WebinarUUID/absentees",queryParams);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(queryParams);
        return;
    }

    sbResponseBody = CkStringBuilder_Create();
    CkHttpResponse_GetBodySb(resp,sbResponseBody);

    jResp = CkJsonObject_Create();
    CkJsonObject_LoadSb(jResp,sbResponseBody);
    CkJsonObject_putEmitCompact(jResp,FALSE);

    printf("Response Body:\n");
    printf("%s\n",CkJsonObject_emit(jResp));

    respStatusCode = CkHttpResponse_getStatusCode(resp);
    printf("Response Status Code = %d\n",respStatusCode);
    if (respStatusCode >= 400) {
        printf("Response Header:\n");
        printf("%s\n",CkHttpResponse_header(resp));
        printf("Failed.\n");
        CkHttpResponse_Dispose(resp);
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(queryParams);
        CkStringBuilder_Dispose(sbResponseBody);
        CkJsonObject_Dispose(jResp);
        return;
    }

    CkHttpResponse_Dispose(resp);

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "page_count": 1,
    //   "page_number": 1,
    //   "page_size": 30,
    //   "total_records": 1,
    //   "registrants": [
    //     {
    //       "id": "24000002122",
    //       "email": "example@example.com",
    //       "first_name": "Jill",
    //       "last_name": "Chill",
    //       "address": "1800 Amphibious Blvd.",
    //       "city": "Mountain View",
    //       "country": "US",
    //       "zip": "94045",
    //       "state": "CA",
    //       "phone": "5550100",
    //       "industry": "Food",
    //       "org": "Cooking Org",
    //       "job_title": "Chef",
    //       "purchasing_time_frame": "1-3 months",
    //       "role_in_purchase_process": "Influencer",
    //       "no_of_employees": "10",
    //       "comments": "Looking forward to the Webinar",
    //       "custom_questions": [
    //         {
    //           "title": "What do you hope to learn from this Webinar?",
    //           "value": "Look forward to learning how you come up with new recipes and what other services you offer."
    //         }
    //       ],
    //       "status": "approved",
    //       "create_time": "2019-02-26T23:01:16.899Z",
    //       "join_url": "https://zoom.us/webinar/mywebinarissocooldighdghodghodg"
    //     }
    //   ]
    // }

    // Sample code for parsing the JSON response...
    // Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code

    // Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.

    page_count = CkJsonObject_IntOf(jResp,"page_count");
    page_number = CkJsonObject_IntOf(jResp,"page_number");
    page_size = CkJsonObject_IntOf(jResp,"page_size");
    total_records = CkJsonObject_IntOf(jResp,"total_records");
    i = 0;
    count_i = CkJsonObject_SizeOfArray(jResp,"registrants");
    while (i < count_i) {
        CkJsonObject_putI(jResp,i);
        id = CkJsonObject_stringOf(jResp,"registrants[i].id");
        email = CkJsonObject_stringOf(jResp,"registrants[i].email");
        first_name = CkJsonObject_stringOf(jResp,"registrants[i].first_name");
        last_name = CkJsonObject_stringOf(jResp,"registrants[i].last_name");
        address = CkJsonObject_stringOf(jResp,"registrants[i].address");
        city = CkJsonObject_stringOf(jResp,"registrants[i].city");
        country = CkJsonObject_stringOf(jResp,"registrants[i].country");
        zip = CkJsonObject_stringOf(jResp,"registrants[i].zip");
        state = CkJsonObject_stringOf(jResp,"registrants[i].state");
        phone = CkJsonObject_stringOf(jResp,"registrants[i].phone");
        industry = CkJsonObject_stringOf(jResp,"registrants[i].industry");
        org = CkJsonObject_stringOf(jResp,"registrants[i].org");
        job_title = CkJsonObject_stringOf(jResp,"registrants[i].job_title");
        purchasing_time_frame = CkJsonObject_stringOf(jResp,"registrants[i].purchasing_time_frame");
        role_in_purchase_process = CkJsonObject_stringOf(jResp,"registrants[i].role_in_purchase_process");
        no_of_employees = CkJsonObject_stringOf(jResp,"registrants[i].no_of_employees");
        comments = CkJsonObject_stringOf(jResp,"registrants[i].comments");
        status = CkJsonObject_stringOf(jResp,"registrants[i].status");
        create_time = CkJsonObject_stringOf(jResp,"registrants[i].create_time");
        join_url = CkJsonObject_stringOf(jResp,"registrants[i].join_url");
        j = 0;
        count_j = CkJsonObject_SizeOfArray(jResp,"registrants[i].custom_questions");
        while (j < count_j) {
            CkJsonObject_putJ(jResp,j);
            title = CkJsonObject_stringOf(jResp,"registrants[i].custom_questions[j].title");
            value = CkJsonObject_stringOf(jResp,"registrants[i].custom_questions[j].value");
            j = j + 1;
        }

        i = i + 1;
    }



    CkHttp_Dispose(http);
    CkJsonObject_Dispose(queryParams);
    CkStringBuilder_Dispose(sbResponseBody);
    CkJsonObject_Dispose(jResp);

    }

Curl Command

curl -G -d "occurrence_id=quis%20officia%20in%20reprehenderit"
	-d "page_size=30"
	-d "next_page_token=quis%20officia%20in%20reprehenderit"
	-H "Authorization: Bearer <access_token>"
https://api.zoom.us/v2/past_webinars/:WebinarUUID/absentees

Postman Collection Item JSON

{
  "name": "Get webinar absentees",
  "request": {
    "auth": {
      "type": "oauth2"
    },
    "method": "GET",
    "header": [
    ],
    "url": {
      "raw": "{{baseUrl}}/past_webinars/:WebinarUUID/absentees?occurrence_id=quis officia in reprehenderit&page_size=30&next_page_token=quis officia in reprehenderit",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "past_webinars",
        ":WebinarUUID",
        "absentees"
      ],
      "query": [
        {
          "key": "occurrence_id",
          "value": "quis officia in reprehenderit",
          "description": "The meeting or webinar occurrence ID."
        },
        {
          "key": "page_size",
          "value": "30",
          "description": "The number of records returned within a single API call."
        },
        {
          "key": "next_page_token",
          "value": "quis officia in reprehenderit",
          "description": "The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes."
        }
      ],
      "variable": [
        {
          "key": "WebinarUUID",
          "value": "quis officia in reprehenderit",
          "description": "(Required) The Webinar UUID. Each Webinar instance will generate its own Webinar UUID (i.e., after a Webinar ends, a new UUID will be generated for the next instance of the Webinar). Please double encode your UUID when using it for API calls if the UUID begins with a '/' or contains '//' in it."
        }
      ]
    },
    "description": "List absentees of a webinar.<br><br>\n**Scopes:** `webinar:read:admin` `webinar:read`<br>\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Heavy`"
  },
  "response": [
    {
      "name": "**HTTP Status Code:** `200`<br>\nSuccess.<br>**Error Code:** `200`<br>\nWebinar plan subscription is missing. Enable webinar for this user once the subscription is added:{userId}.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/past_webinars/:WebinarUUID/absentees?occurrence_id=quis officia in reprehenderit&page_size=30&next_page_token=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "past_webinars",
            ":WebinarUUID",
            "absentees"
          ],
          "query": [
            {
              "key": "occurrence_id",
              "value": "quis officia in reprehenderit"
            },
            {
              "key": "page_size",
              "value": "30"
            },
            {
              "key": "next_page_token",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "WebinarUUID",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The Webinar UUID. Each Webinar instance will generate its own Webinar UUID (i.e., after a Webinar ends, a new UUID will be generated for the next instance of the Webinar). Please double encode your UUID when using it for API calls if the UUID begins with a '/' or contains '//' in it."
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n \"page_count\": 1,\n \"page_number\": 1,\n \"page_size\": 30,\n \"total_records\": 1,\n \"registrants\": [\n  {\n   \"id\": \"24000002122\",\n   \"email\": \"example@example.com\",\n   \"first_name\": \"Jill\",\n   \"last_name\": \"Chill\",\n   \"address\": \"1800 Amphibious Blvd.\",\n   \"city\": \"Mountain View\",\n   \"country\": \"US\",\n   \"zip\": \"94045\",\n   \"state\": \"CA\",\n   \"phone\": \"5550100\",\n   \"industry\": \"Food\",\n   \"org\": \"Cooking Org\",\n   \"job_title\": \"Chef\",\n   \"purchasing_time_frame\": \"1-3 months\",\n   \"role_in_purchase_process\": \"Influencer\",\n   \"no_of_employees\": \"10\",\n   \"comments\": \"Looking forward to the Webinar\",\n   \"custom_questions\": [\n    {\n     \"title\": \"What do you hope to learn from this Webinar?\",\n     \"value\": \"Look forward to learning how you come up with new recipes and what other services you offer.\"\n    }\n   ],\n   \"status\": \"approved\",\n   \"create_time\": \"2019-02-26T23:01:16.899Z\",\n   \"join_url\": \"https://zoom.us/webinar/mywebinarissocooldighdghodghodg\"\n  }\n ]\n}"
    },
    {
      "name": "**Error Code:** `300`<br>Invalid webinar UUID.",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/past_webinars/:WebinarUUID/absentees?occurrence_id=quis officia in reprehenderit&page_size=30&next_page_token=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "past_webinars",
            ":WebinarUUID",
            "absentees"
          ],
          "query": [
            {
              "key": "occurrence_id",
              "value": "quis officia in reprehenderit"
            },
            {
              "key": "page_size",
              "value": "30"
            },
            {
              "key": "next_page_token",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "WebinarUUID",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The Webinar UUID. Each Webinar instance will generate its own Webinar UUID (i.e., after a Webinar ends, a new UUID will be generated for the next instance of the Webinar). Please double encode your UUID when using it for API calls if the UUID begins with a '/' or contains '//' in it."
            }
          ]
        }
      },
      "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:** `300`<br>\nThe request could not be completed because you have provided an invalid occurence ID: {occurenceId}<br>\n**Error Code:** `1010`<br>\nUser does not belong to this account:{accountId}.<br>\n**Error Code",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/past_webinars/:WebinarUUID/absentees?occurrence_id=quis officia in reprehenderit&page_size=30&next_page_token=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "past_webinars",
            ":WebinarUUID",
            "absentees"
          ],
          "query": [
            {
              "key": "occurrence_id",
              "value": "quis officia in reprehenderit"
            },
            {
              "key": "page_size",
              "value": "30"
            },
            {
              "key": "next_page_token",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "WebinarUUID",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The Webinar UUID. Each Webinar instance will generate its own Webinar UUID (i.e., after a Webinar ends, a new UUID will be generated for the next instance of the Webinar). Please double encode your UUID when using it for API calls if the UUID begins with a '/' or contains '//' in it."
            }
          ]
        }
      },
      "status": "Bad Request",
      "code": 400,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    },
    {
      "name": "**HTTP Status Code:** `404`<br>\n**Error Code:** `1001`<br>\nUser {userId} does not exist or does not belong to this account.<br>\n**Error Code:** `3001`<br>Meeting ID is invalid or not end.\n\n",
      "originalRequest": {
        "method": "GET",
        "header": [
          {
            "description": "Added as a part of security scheme: oauth2",
            "key": "Authorization",
            "value": "<token>"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/past_webinars/:WebinarUUID/absentees?occurrence_id=quis officia in reprehenderit&page_size=30&next_page_token=quis officia in reprehenderit",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "past_webinars",
            ":WebinarUUID",
            "absentees"
          ],
          "query": [
            {
              "key": "occurrence_id",
              "value": "quis officia in reprehenderit"
            },
            {
              "key": "page_size",
              "value": "30"
            },
            {
              "key": "next_page_token",
              "value": "quis officia in reprehenderit"
            }
          ],
          "variable": [
            {
              "key": "WebinarUUID",
              "value": "quis officia in reprehenderit",
              "description": "(Required) The Webinar UUID. Each Webinar instance will generate its own Webinar UUID (i.e., after a Webinar ends, a new UUID will be generated for the next instance of the Webinar). Please double encode your UUID when using it for API calls if the UUID begins with a '/' or contains '//' in it."
            }
          ]
        }
      },
      "status": "Not Found",
      "code": 404,
      "_postman_previewlanguage": "text",
      "header": [
        {
          "key": "Content-Type",
          "value": "text/plain"
        }
      ],
      "cookie": [
      ],
      "body": ""
    }
  ]
}