Node.js Google Calendar: Change the Color of an Event

Back to Index

Changes the color of a particular event. The calendar and event are specified by ID. This example changes the color for an event (id = 52e7uk7j7vl5dosj7b25memov0) on the calendar (id = support@chilkatcloud.com).
This changes the event to colorId = "6" which seems to be an orange-ish color..

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


var os = require('os');
if (os.platform() == 'win32') {  
    var chilkat = require('chilkat_node6_win32'); 
} else if (os.platform() == 'linux') {
    if (os.arch() == 'arm') {
        var chilkat = require('chilkat_node6_arm');
    } else if (os.arch() == 'x86') {
        var chilkat = require('chilkat_node6_linux32');
    } else {
        var chilkat = require('chilkat_node6_linux64');
    }
} else if (os.platform() == 'darwin') {
    var chilkat = require('chilkat_node6_macosx');
}

function chilkatExample() {

    var rest = new chilkat.Rest();
    var success;

    //   Provide a previously obtained OAuth2 access token.
    var oauth2 = new chilkat.OAuth2();
    oauth2.AccessToken = "OAUTH2_ACCESS_TOKEN";
    rest.SetAuthOAuth2(oauth2);

    success = rest.Connect("www.googleapis.com",443,true,true);
    if (success !== true) {
        console.log(rest.LastErrorText);
        return;
    }

    //  The following code creates the JSON request body.
    //  The JSON created by this code is shown below.
    var jsonReq = new chilkat.JsonObject();
    jsonReq.UpdateString("colorId","6");

    var sbReq = new chilkat.StringBuilder();
    jsonReq.EmitSb(sbReq);

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

    var sbJson = new chilkat.StringBuilder();
    success = rest.FullRequestSb("PATCH","/calendar/v3/calendars/support@chilkatcloud.com/events/52e7uk7j7vl5dosj7b25memov0",sbReq,sbJson);
    if (success !== true) {
        console.log(rest.LastErrorText);
        return;
    }

    if (rest.ResponseStatusCode !== 200) {
        console.log("Received error response code: " + rest.ResponseStatusCode);
        console.log("Response body:");
        console.log(sbJson.GetAsString());
        return;
    }

    var json = new chilkat.JsonObject();
    json.LoadSb(sbJson);

    //  The following code parses the JSON response.
    //  A sample JSON response is shown below the sample code.
    var kind;
    var etag;
    var id;
    var status;
    var htmlLink;
    var created;
    var updated;
    var summary;
    var colorId;
    var creatorEmail;
    var creatorSelf;
    var organizerEmail;
    var organizerSelf;
    var startDateTime;
    var endDateTime;
    var iCalUID;
    var sequence;
    var hangoutLink;
    var remindersUseDefault;

    kind = json.StringOf("kind");
    etag = json.StringOf("etag");
    id = json.StringOf("id");
    status = json.StringOf("status");
    htmlLink = json.StringOf("htmlLink");
    created = json.StringOf("created");
    updated = json.StringOf("updated");
    summary = json.StringOf("summary");
    colorId = json.StringOf("colorId");
    creatorEmail = json.StringOf("creator.email");
    creatorSelf = json.BoolOf("creator.self");
    organizerEmail = json.StringOf("organizer.email");
    organizerSelf = json.BoolOf("organizer.self");
    startDateTime = json.StringOf("start.dateTime");
    endDateTime = json.StringOf("end.dateTime");
    iCalUID = json.StringOf("iCalUID");
    sequence = json.IntOf("sequence");
    hangoutLink = json.StringOf("hangoutLink");
    remindersUseDefault = json.BoolOf("reminders.useDefault");

    console.log("Example Completed.");

}

chilkatExample();

Sample JSON Request Body

{
    "colorId": "6"
}

Sample JSON Response Body

{
  "kind": "calendar#event",
  "etag": "\"3021538600038000\"",
  "id": "52e7uk7j7vl5dosj7b25memov0",
  "status": "confirmed",
  "htmlLink": "https://www.google.com/calendar/event?eid=NTJlN3VrN2o3dmw1ZG9zajdiMjVtZW1vdjAgc3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t",
  "created": "2017-11-08T21:27:50.000Z",
  "updated": "2017-11-15T18:08:20.019Z",
  "summary": "Dentist Appointment",
  "colorId": "6",
  "creator": {
    "email": "support@chilkatcloud.com",
    "self": true
  },
  "organizer": {
    "email": "support@chilkatcloud.com",
    "self": true
  },
  "start": {
    "dateTime": "2017-11-27T10:30:00-06:00"
  },
  "end": {
    "dateTime": "2017-11-27T11:30:00-06:00"
  },
  "iCalUID": "52e7uk7j7vl5dosj7b25memov0@google.com",
  "sequence": 1,
  "hangoutLink": "https://plus.google.com/hangouts/_/chilkatcloud.com/support?hceid=c3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t.52e7uk7j7vl5dosj7b25memov0",
  "reminders": {
    "useDefault": true
  }
}