Unicode C++ Google Calendar: Insert an Event

Back to Index

Inserts a new event to a specified calendar.
This example inserts an event into the calender specified by ID = "support@chilkatcloud.com"
Returns the JSON of the event that was created.

Documentation: https://developers.google.com/google-apps/calendar/v3/reference/events/insert


#include <CkRestW.h>
#include <CkOAuth2W.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>

void ChilkatSample(void)
    {
    CkRestW rest;
    bool success;

    //   Provide a previously obtained OAuth2 access token.
    CkOAuth2W oauth2;
    oauth2.put_AccessToken(L"OAUTH2_ACCESS_TOKEN");
    rest.SetAuthOAuth2(oauth2);

    success = rest.Connect(L"www.googleapis.com",443,true,true);
    if (success != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    //  The following code creates the JSON request body.
    //  The JSON created by this code is shown below.
    CkJsonObjectW jsonReq;
    jsonReq.UpdateString(L"kind",L"calendar#event");
    jsonReq.UpdateString(L"status",L"confirmed");
    jsonReq.UpdateString(L"summary",L"QXQC");
    jsonReq.UpdateString(L"description",L"21st Annual QXQC Gathering");
    jsonReq.UpdateString(L"location",L"Quigley's Irish Pub, 43 E Jefferson Ave, Naperville, IL 60540, USA");
    jsonReq.UpdateString(L"start.dateTime",L"2017-12-09T20:00:00-06:00");
    jsonReq.UpdateString(L"end.dateTime",L"2017-12-09T23:00:00-06:00");
    jsonReq.UpdateString(L"attendees[0].email",L"dean@example.com");
    jsonReq.UpdateString(L"attendees[0].responseStatus",L"needsAction");
    jsonReq.UpdateString(L"attendees[1].email",L"support@chilkatcloud.com");
    jsonReq.UpdateBool(L"attendees[1].organizer",true);
    jsonReq.UpdateBool(L"attendees[1].self",true);
    jsonReq.UpdateString(L"attendees[1].responseStatus",L"accepted");
    jsonReq.UpdateString(L"attendees[2].email",L"ajay@example.com");
    jsonReq.UpdateString(L"attendees[2].responseStatus",L"needsAction");
    jsonReq.UpdateString(L"attendees[3].email",L"jim@example.com");
    jsonReq.UpdateString(L"attendees[3].responseStatus",L"needsAction");
    jsonReq.UpdateString(L"attendees[4].email",L"gilian@example.com");
    jsonReq.UpdateString(L"attendees[4].responseStatus",L"needsAction");
    jsonReq.UpdateBool(L"reminders.useDefault",true);

    CkStringBuilderW sbReq;
    jsonReq.EmitSb(sbReq);

    rest.AddHeader(L"Content-Type",L"application/json");

    CkStringBuilderW sbJson;
    success = rest.FullRequestSb(L"POST",L"/calendar/v3/calendars/support@chilkatcloud.com/events",sbReq,sbJson);
    if (success != true) {
        wprintf(L"%s\n",rest.lastErrorText());
        return;
    }

    if (rest.get_ResponseStatusCode() != 200) {
        wprintf(L"Received error response code: %d\n",rest.get_ResponseStatusCode());
        wprintf(L"Response body:\n");
        wprintf(L"%s\n",sbJson.getAsString());
        return;
    }

    CkJsonObjectW json;
    json.LoadSb(sbJson);

    //  The following code parses the JSON response.
    //  A sample JSON response is shown below the sample code.
    const wchar_t *kind = 0;
    const wchar_t *etag = 0;
    const wchar_t *id = 0;
    const wchar_t *status = 0;
    const wchar_t *htmlLink = 0;
    const wchar_t *created = 0;
    const wchar_t *updated = 0;
    const wchar_t *summary = 0;
    const wchar_t *description = 0;
    const wchar_t *location = 0;
    const wchar_t *creatorEmail = 0;
    bool creatorSelf;
    const wchar_t *organizerEmail = 0;
    bool organizerSelf;
    const wchar_t *startDateTime = 0;
    const wchar_t *endDateTime = 0;
    const wchar_t *iCalUID = 0;
    int sequence;
    const wchar_t *hangoutLink = 0;
    bool remindersUseDefault;
    int i;
    int count_i;
    const wchar_t *email = 0;
    const wchar_t *responseStatus = 0;
    bool organizer;
    bool self;

    kind = json.stringOf(L"kind");
    etag = json.stringOf(L"etag");
    id = json.stringOf(L"id");
    status = json.stringOf(L"status");
    htmlLink = json.stringOf(L"htmlLink");
    created = json.stringOf(L"created");
    updated = json.stringOf(L"updated");
    summary = json.stringOf(L"summary");
    description = json.stringOf(L"description");
    location = json.stringOf(L"location");
    creatorEmail = json.stringOf(L"creator.email");
    creatorSelf = json.BoolOf(L"creator.self");
    organizerEmail = json.stringOf(L"organizer.email");
    organizerSelf = json.BoolOf(L"organizer.self");
    startDateTime = json.stringOf(L"start.dateTime");
    endDateTime = json.stringOf(L"end.dateTime");
    iCalUID = json.stringOf(L"iCalUID");
    sequence = json.IntOf(L"sequence");
    hangoutLink = json.stringOf(L"hangoutLink");
    remindersUseDefault = json.BoolOf(L"reminders.useDefault");
    i = 0;
    count_i = json.SizeOfArray(L"attendees");
    while (i < count_i) {
        json.put_I(i);
        email = json.stringOf(L"attendees[i].email");
        responseStatus = json.stringOf(L"attendees[i].responseStatus");
        organizer = json.BoolOf(L"attendees[i].organizer");
        self = json.BoolOf(L"attendees[i].self");
        i = i + 1;
    }

    wprintf(L"Example Completed.\n");
    }

Sample JSON Request Body

{
  "kind": "calendar#event",
  "status": "confirmed",
  "summary": "QXQC",
  "description": "21st Annual QXQC Gathering",
  "location": "Quigley's Irish Pub, 43 E Jefferson Ave, Naperville, IL 60540, USA",
  "start": {
    "dateTime": "2017-12-09T20:00:00-06:00"
  },
  "end": {
    "dateTime": "2017-12-09T23:00:00-06:00"
  },
  "attendees": [
    {
      "email": "dean@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "support@chilkatcloud.com",
      "organizer": true,
      "self": true,
      "responseStatus": "accepted"
    },
    {
      "email": "ajay@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "jim@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "gilian@example.com",
      "responseStatus": "needsAction"
    }
  ],
  "reminders": {
    "useDefault": true
  }
}

Sample JSON Response Body

{
  "kind": "calendar#event",
  "etag": "\"3020332888490000\"",
  "id": "oqel9ijr6rgfgqg12b0qtlhfjs",
  "status": "confirmed",
  "htmlLink": "https://www.google.com/calendar/event?eid=b3FlbDlpanI2cmdmZ3FnMTJiMHF0bGhmanMgc3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t",
  "created": "2017-11-08T18:40:44.000Z",
  "updated": "2017-11-08T18:40:44.245Z",
  "summary": "QXQC",
  "description": "21st Annual QXQC Gathering",
  "location": "Quigley's Irish Pub, 43 E Jefferson Ave, Naperville, IL 60540, USA",
  "creator": {
    "email": "support@chilkatcloud.com",
    "self": true
  },
  "organizer": {
    "email": "support@chilkatcloud.com",
    "self": true
  },
  "start": {
    "dateTime": "2017-12-09T20:00:00-06:00"
  },
  "end": {
    "dateTime": "2017-12-09T23:00:00-06:00"
  },
  "iCalUID": "oqel9ijr6rgfgqg12b0qtlhfjs@google.com",
  "sequence": 0,
  "attendees": [
    {
      "email": "dean@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "support@chilkatcloud.com",
      "organizer": true,
      "self": true,
      "responseStatus": "accepted"
    },
    {
      "email": "ajay@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "jim@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "gilian@example.com",
      "responseStatus": "needsAction"
    }
  ],
  "hangoutLink": "https://plus.google.com/hangouts/_/chilkatcloud.com/qxqc?hceid=c3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t.oqel9ijr6rgfgqg12b0qtlhfjs",
  "reminders": {
    "useDefault": true
  }
}