Perl Google Calendar: Move Event to Another Calendar

Back to Index

Moves an event to another calendar, i.e. changes an event's organizer.
This example moves event ID="35ocdnnjofbtfs6c602uqvdg9u" from the calendar (ID = "support@chilkatcloud.com") to the calendar (ID = "chilkatcloud.com_su2u8trmo6rlq2jh6cr9hb032o@group.calendar.google.com")

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


use chilkat();

$rest = chilkat::CkRest->new();

#   Provide a previously obtained OAuth2 access token.
$oauth2 = chilkat::CkOAuth2->new();
$oauth2->put_AccessToken("OAUTH2_ACCESS_TOKEN");
$rest->SetAuthOAuth2($oauth2);

$success = $rest->Connect("www.googleapis.com",443,1,1);
if ($success != 1) {
    print $rest->lastErrorText() . "\r\n";
    exit;
}

$rest->AddQueryParam("destination",'chilkatcloud.com_su2u8trmo6rlq2jh6cr9hb032o@group.calendar.google.com');

$sbReq = chilkat::CkStringBuilder->new();

$sbJson = chilkat::CkStringBuilder->new();
$success = $rest->FullRequestSb("POST",'/calendar/v3/calendars/support@chilkatcloud.com/events/35ocdnnjofbtfs6c602uqvdg9u/move',$sbReq,$sbJson);
if ($success != 1) {
    print $rest->lastErrorText() . "\r\n";
    exit;
}

if ($rest->get_ResponseStatusCode() != 200) {
    print "Received error response code: " . $rest->get_ResponseStatusCode() . "\r\n";
    print "Response body:" . "\r\n";
    print $sbJson->getAsString() . "\r\n";
    exit;
}

$json = chilkat::CkJsonObject->new();
$json->LoadSb($sbJson);

#  The following code parses the JSON response.
#  A sample JSON response is shown below the sample code.

$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");
$description = $json->stringOf("description");
$location = $json->stringOf("location");
$creatorEmail = $json->stringOf("creator.email");
$creatorSelf = $json->BoolOf("creator.self");
$organizerEmail = $json->stringOf("organizer.email");
$organizerDisplayName = $json->stringOf("organizer.displayName");
$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");
$i = 0;
$count_i = $json->SizeOfArray("attendees");
while ($i < $count_i) {
    $json->put_I($i);
    $email = $json->stringOf("attendees[i].email");
    $responseStatus = $json->stringOf("attendees[i].responseStatus");
    $self = $json->BoolOf("attendees[i].self");
    $i = $i + 1;
}

print "Example Completed." . "\r\n";

Sample JSON Response Body

{
  "kind": "calendar#event",
  "etag": "\"3020341523602000\"",
  "id": "35ocdnnjofbtfs6c602uqvdg9u",
  "status": "confirmed",
  "htmlLink": "https://www.google.com/calendar/event?eid=MzVvY2RubmpvZmJ0ZnM2YzYwMnVxdmRnOXUgc3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t",
  "created": "2017-11-08T18:25:38.000Z",
  "updated": "2017-11-08T19:52:41.801Z",
  "summary": "QXQC",
  "description": "20th 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": "chilkatcloud.com_su2u8trmo6rlq2jh6cr9hb032o@group.calendar.google.com",
    "displayName": "Party Calendar"
  },
  "start": {
    "dateTime": "2017-11-09T20:00:00-06:00"
  },
  "end": {
    "dateTime": "2017-11-09T23:00:00-06:00"
  },
  "iCalUID": "35ocdnnjofbtfs6c602uqvdg9u@google.com",
  "sequence": 0,
  "attendees": [
    {
      "email": "dean@example.com",
      "responseStatus": "needsAction"
    },
    {
      "email": "support@chilkatcloud.com",
      "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/support?hceid=c3VwcG9ydEBjaGlsa2F0Y2xvdWQuY29t.35ocdnnjofbtfs6c602uqvdg9u",
  "reminders": {
    "useDefault": true
  }
}