Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) MS Graph Calendar Update EventUpdate the properties of an event object. For more information, see https://docs.microsoft.com/en-us/graph/api/event-update?view=graph-rest-1.0&tabs=http
integer li_rc oleobject loo_Http integer li_Success oleobject loo_Json oleobject loo_SbRequestBody oleobject loo_Resp oleobject loo_SbResponseBody oleobject loo_JResp integer li_RespStatusCode string ls_OriginalStartTimeZone string ls_OriginalEndTimeZone string ls_ResponseStatusResponse string ls_ResponseStatusTime string ls_Recurrence string ls_ICalUId integer li_ReminderMinutesBeforeStart integer li_IsOnlineMeeting string ls_OnlineMeetingProvider integer li_IsReminderOn string ls_OnlineMeetingJoinUrl string ls_OnlineMeetingConferenceId string ls_OnlineMeetingTollNumber // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") if li_rc < 0 then destroy loo_Http MessageBox("Error","Connecting to COM object failed") return end if // Implements the following CURL command: // curl -X PATCH https://graph.microsoft.com/v1.0/me/events/{id} \ // -H "Content-type: application/json" \ // -d '{ // "originalStartTimeZone": "originalStartTimeZone-value", // "originalEndTimeZone": "originalEndTimeZone-value", // "responseStatus": { // "response": "", // "time": "datetime-value" // }, // "recurrence": null, // "iCalUId": "iCalUId-value", // "reminderMinutesBeforeStart": 99, // "isOnlineMeeting": true, // "onlineMeetingProvider": "teamsForBusiness", // "isReminderOn": true, // "categories": ["Red category"] // }' // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON // The following JSON is sent in the request body. // { // "originalStartTimeZone": "originalStartTimeZone-value", // "originalEndTimeZone": "originalEndTimeZone-value", // "responseStatus": { // "response": "", // "time": "datetime-value" // }, // "recurrence": null, // "iCalUId": "iCalUId-value", // "reminderMinutesBeforeStart": 99, // "isOnlineMeeting": true, // "onlineMeetingProvider": "teamsForBusiness", // "isReminderOn": true, // "categories": [ // "Red category" // ] // } loo_Json = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject") loo_Json.UpdateString("originalStartTimeZone","originalStartTimeZone-value") loo_Json.UpdateString("originalEndTimeZone","originalEndTimeZone-value") loo_Json.UpdateString("responseStatus.response","") loo_Json.UpdateString("responseStatus.time","datetime-value") loo_Json.UpdateNull("recurrence") loo_Json.UpdateString("iCalUId","iCalUId-value") loo_Json.UpdateInt("reminderMinutesBeforeStart",99) loo_Json.UpdateBool("isOnlineMeeting",1) loo_Json.UpdateString("onlineMeetingProvider","teamsForBusiness") loo_Json.UpdateBool("isReminderOn",1) loo_Json.UpdateString("categories[0]","Red category") loo_Http.SetRequestHeader("Content-type","application/json") loo_SbRequestBody = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbRequestBody.ConnectToNewObject("Chilkat.StringBuilder") loo_Json.EmitSb(loo_SbRequestBody) loo_Resp = loo_Http.PTextSb("PATCH","https://graph.microsoft.com/v1.0/me/events/{id}",loo_SbRequestBody,"utf-8","application/json",0,0) if loo_Http.LastMethodSuccess = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Http destroy loo_Json destroy loo_SbRequestBody return end if loo_SbResponseBody = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder") loo_Resp.GetBodySb(loo_SbResponseBody) loo_JResp = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject") loo_JResp.LoadSb(loo_SbResponseBody) loo_JResp.EmitCompact = 0 Write-Debug "Response Body:" Write-Debug loo_JResp.Emit() li_RespStatusCode = loo_Resp.StatusCode Write-Debug "Response Status Code = " + string(li_RespStatusCode) if li_RespStatusCode >= 400 then Write-Debug "Response Header:" Write-Debug loo_Resp.Header Write-Debug "Failed." destroy loo_Resp destroy loo_Http destroy loo_Json destroy loo_SbRequestBody destroy loo_SbResponseBody destroy loo_JResp return end if destroy loo_Resp // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "originalStartTimeZone": "originalStartTimeZone-value", // "originalEndTimeZone": "originalEndTimeZone-value", // "responseStatus": { // "response": "", // "time": "datetime-value" // }, // "recurrence": null, // "iCalUId": "iCalUId-value", // "reminderMinutesBeforeStart": 99, // "isOnlineMeeting": true, // "onlineMeetingProvider": "teamsForBusiness", // "isReminderOn": true, // "onlineMeeting": { // "joinUrl": "https://teams.microsoft.com/l/meetup-join/19%3ameeting_NzIyNzhlMGEtM2YyZC00ZmY0LTlhNzUtZmZjNWFmZGNlNzE2%40thread.v2/0?context=%7b%22Tid%22%3a%2272f988bf-86f1-41af-91ab-2d7cd011db47%22%2c%22Oid%22%3a%22bc55b173-cff6-457d-b7a1-64bda7d7581a%22%7d", // "conferenceId": "177513992", // "tollNumber": "+91 22 6241 6885" // } // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON ls_OriginalStartTimeZone = loo_JResp.StringOf("originalStartTimeZone") ls_OriginalEndTimeZone = loo_JResp.StringOf("originalEndTimeZone") ls_ResponseStatusResponse = loo_JResp.StringOf("responseStatus.response") ls_ResponseStatusTime = loo_JResp.StringOf("responseStatus.time") ls_Recurrence = loo_JResp.StringOf("recurrence") ls_ICalUId = loo_JResp.StringOf("iCalUId") li_ReminderMinutesBeforeStart = loo_JResp.IntOf("reminderMinutesBeforeStart") li_IsOnlineMeeting = loo_JResp.BoolOf("isOnlineMeeting") ls_OnlineMeetingProvider = loo_JResp.StringOf("onlineMeetingProvider") li_IsReminderOn = loo_JResp.BoolOf("isReminderOn") ls_OnlineMeetingJoinUrl = loo_JResp.StringOf("onlineMeeting.joinUrl") ls_OnlineMeetingConferenceId = loo_JResp.StringOf("onlineMeeting.conferenceId") ls_OnlineMeetingTollNumber = loo_JResp.StringOf("onlineMeeting.tollNumber") destroy loo_Http destroy loo_Json destroy loo_SbRequestBody destroy loo_SbResponseBody destroy loo_JResp |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.