Sample code for 30+ languages & platforms
C

MS Graph Calendar List Events

See more Microsoft Calendar Examples

Retrieve a list of events in a calendar. The list contains single instance meetings and series masters.

For more details, see https://docs.microsoft.com/en-us/graph/api/calendar-list-events?view=graph-rest-1.0

Chilkat C Downloads

C
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>

void ChilkatSample(void)
    {
    BOOL success;
    HCkHttp http;
    HCkJsonObject jsonToken;
    const char *strResponse;
    HCkJsonObject json;
    const char *odataContext;
    int i;
    int count_i;
    const char *odataEtag;
    const char *id;
    const char *createdDateTime;
    const char *lastModifiedDateTime;
    const char *changeKey;
    const char *originalStartTimeZone;
    const char *originalEndTimeZone;
    const char *iCalUId;
    int reminderMinutesBeforeStart;
    BOOL isReminderOn;
    BOOL hasAttachments;
    const char *subject;
    const char *bodyPreview;
    const char *importance;
    const char *sensitivity;
    BOOL isAllDay;
    BOOL isCancelled;
    BOOL isOrganizer;
    BOOL responseRequested;
    const char *seriesMasterId;
    const char *showAs;
    const char *v_type;
    const char *webLink;
    const char *onlineMeetingUrl;
    const char *recurrence;
    const char *responseStatusResponse;
    const char *responseStatusTime;
    const char *bodyContentType;
    const char *bodyContent;
    const char *startDateTime;
    const char *startTimeZone;
    const char *endDateTime;
    const char *endTimeZone;
    const char *locationDisplayName;
    const char *locationLocationType;
    const char *locationUniqueId;
    const char *locationUniqueIdType;
    const char *organizerEmailAddressName;
    const char *organizerEmailAddressAddress;
    int j;
    int count_j;
    const char *displayName;
    const char *locationType;
    const char *uniqueId;
    const char *uniqueIdType;
    const char *statusResponse;
    const char *statusTime;
    const char *emailAddressName;
    const char *emailAddressAddress;

    success = FALSE;

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

    http = CkHttp_Create();

    //  Use your previously obtained access token as shown here:
    //     Get Microsoft Graph OAuth2 Access Token with Calendars.ReadWrite scope.

    jsonToken = CkJsonObject_Create();
    success = CkJsonObject_LoadFile(jsonToken,"qa_data/tokens/msGraphCalendar.json");
    if (success == FALSE) {
        printf("%s\n",CkJsonObject_lastErrorText(jsonToken));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(jsonToken);
        return;
    }

    CkHttp_putAuthToken(http,CkJsonObject_stringOf(jsonToken,"access_token"));

    //  Specify the calendar id
    CkHttp_SetUrlVar(http,"id","AQMkADAwATM0MDAAMS1iNTcwLWI2NTEtMDACLTAwCgBGAAADsVyfxjDU406Ic4X7ill8xAcA5_vF7TKKdE6bGCRqXyl2PQAAAgEGAAAA5_vF7TKKdE6bGCRqXyl2PQAClEpRTgAAAA==");
    //  Send a GET request to https://graph.microsoft.com/v1.0/me/calendars/{$id}/events
    strResponse = CkHttp_quickGetStr(http,"https://graph.microsoft.com/v1.0/me/calendars/{$id}/events");
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(jsonToken);
        return;
    }

    json = CkJsonObject_Create();
    CkJsonObject_Load(json,strResponse);
    CkJsonObject_putEmitCompact(json,FALSE);

    if (CkHttp_getLastStatus(http) != 200) {
        printf("%s\n",CkJsonObject_emit(json));
        printf("Failed, response status code = %d\n",CkHttp_getLastStatus(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(jsonToken);
        CkJsonObject_Dispose(json);
        return;
    }

    printf("%s\n",CkJsonObject_emit(json));

    //  Sample output:
    //  (See parsing code below..)

    //  {
    //    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('admin%40chilkat.io')/calendars('AQMkADAwATM0MDAAMS1i ... AClEpRTgAAAA%3D%3D')/events",
    //    "value": [
    //      {
    //        "@odata.etag": "W/\"5+vF7TKKdE6bGCRqXyl2PQAClIgmmw==\"",
    //        "id": "AQMkADAwATM0MDAAM ... AApRZ7JkAAAA=",
    //        "createdDateTime": "2019-04-26T14:31:39.8791929Z",
    //        "lastModifiedDateTime": "2019-04-26T14:31:41.2753537Z",
    //        "changeKey": "5+vF7TKKdE6bGCRqXyl2PQAClIgmmw==",
    //        "categories": [
    //        ],
    //        "originalStartTimeZone": "Pacific Standard Time",
    //        "originalEndTimeZone": "Pacific Standard Time",
    //        "iCalUId": "040000008200E ... A230FEBFE5F7486A",
    //        "reminderMinutesBeforeStart": 15,
    //        "isReminderOn": true,
    //        "hasAttachments": false,
    //        "subject": "Let's go for lunch",
    //        "bodyPreview": "Does mid month work for you?",
    //        "importance": "normal",
    //        "sensitivity": "normal",
    //        "isAllDay": false,
    //        "isCancelled": false,
    //        "isOrganizer": true,
    //        "responseRequested": true,
    //        "seriesMasterId": null,
    //        "showAs": "busy",
    //        "type": "singleInstance",
    //        "webLink": "https://outlook.live.com/owa/?itemid=AQMkADAwATM0MDAAMS1iNTcwLWI2NT ... gkal8pdj0AApRZ7JkAAAA%3D&exvsurl=1&path=/calendar/item",
    //        "onlineMeetingUrl": null,
    //        "recurrence": null,
    //        "responseStatus": {
    //          "response": "organizer",
    //          "time": "0001-01-01T00:00:00Z"
    //        },
    //        "body": {
    //          "contentType": "html",
    //          "content": "<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\r\n<meta content=\"text/html; charset=us-ascii\">\r\n</head>\r\n<body>\r\nDoes mid month work for you?\r\n</body>\r\n</html>\r\n"
    //        },
    //        "start": {
    //          "dateTime": "2019-11-15T20:00:00.0000000",
    //          "timeZone": "UTC"
    //        },
    //        "end": {
    //          "dateTime": "2019-11-15T22:00:00.0000000",
    //          "timeZone": "UTC"
    //        },
    //        "location": {
    //          "displayName": "Harry's Bar",
    //          "locationType": "default",
    //          "uniqueId": "Harry's Bar",
    //          "uniqueIdType": "private"
    //        },
    //        "locations": [
    //          {
    //            "displayName": "Harry's Bar",
    //            "locationType": "default",
    //            "uniqueId": "Harry's Bar",
    //            "uniqueIdType": "private"
    //          }
    //        ],
    //        "attendees": [
    //          {
    //            "type": "required",
    //            "status": {
    //              "response": "none",
    //              "time": "0001-01-01T00:00:00Z"
    //            },
    //            "emailAddress": {
    //              "name": "Adele Vance",
    //              "address": "adelev@contoso.onmicrosoft.com"
    //            }
    //          }
    //        ],
    //        "organizer": {
    //          "emailAddress": {
    //            "name": "Matt",
    //            "address": "outlook_3A33FCEB9B74CC15@outlook.com"
    //          }
    //        }
    //      }
    //    ]
    //  }

    //  Use this online tool to generate parsing code from sample JSON: 
    //  Generate Parsing Code from JSON

    odataContext = CkJsonObject_stringOf(json,"\"@odata.context\"");
    i = 0;
    count_i = CkJsonObject_SizeOfArray(json,"value");
    while (i < count_i) {
        CkJsonObject_putI(json,i);
        odataEtag = CkJsonObject_stringOf(json,"value[i].\"@odata.etag\"");
        id = CkJsonObject_stringOf(json,"value[i].id");
        createdDateTime = CkJsonObject_stringOf(json,"value[i].createdDateTime");
        lastModifiedDateTime = CkJsonObject_stringOf(json,"value[i].lastModifiedDateTime");
        changeKey = CkJsonObject_stringOf(json,"value[i].changeKey");
        originalStartTimeZone = CkJsonObject_stringOf(json,"value[i].originalStartTimeZone");
        originalEndTimeZone = CkJsonObject_stringOf(json,"value[i].originalEndTimeZone");
        iCalUId = CkJsonObject_stringOf(json,"value[i].iCalUId");
        reminderMinutesBeforeStart = CkJsonObject_IntOf(json,"value[i].reminderMinutesBeforeStart");
        isReminderOn = CkJsonObject_BoolOf(json,"value[i].isReminderOn");
        hasAttachments = CkJsonObject_BoolOf(json,"value[i].hasAttachments");
        subject = CkJsonObject_stringOf(json,"value[i].subject");
        bodyPreview = CkJsonObject_stringOf(json,"value[i].bodyPreview");
        importance = CkJsonObject_stringOf(json,"value[i].importance");
        sensitivity = CkJsonObject_stringOf(json,"value[i].sensitivity");
        isAllDay = CkJsonObject_BoolOf(json,"value[i].isAllDay");
        isCancelled = CkJsonObject_BoolOf(json,"value[i].isCancelled");
        isOrganizer = CkJsonObject_BoolOf(json,"value[i].isOrganizer");
        responseRequested = CkJsonObject_BoolOf(json,"value[i].responseRequested");
        seriesMasterId = CkJsonObject_stringOf(json,"value[i].seriesMasterId");
        showAs = CkJsonObject_stringOf(json,"value[i].showAs");
        v_type = CkJsonObject_stringOf(json,"value[i].type");
        webLink = CkJsonObject_stringOf(json,"value[i].webLink");
        onlineMeetingUrl = CkJsonObject_stringOf(json,"value[i].onlineMeetingUrl");
        recurrence = CkJsonObject_stringOf(json,"value[i].recurrence");
        responseStatusResponse = CkJsonObject_stringOf(json,"value[i].responseStatus.response");
        responseStatusTime = CkJsonObject_stringOf(json,"value[i].responseStatus.time");
        bodyContentType = CkJsonObject_stringOf(json,"value[i].body.contentType");
        bodyContent = CkJsonObject_stringOf(json,"value[i].body.content");
        startDateTime = CkJsonObject_stringOf(json,"value[i].start.dateTime");
        startTimeZone = CkJsonObject_stringOf(json,"value[i].start.timeZone");
        endDateTime = CkJsonObject_stringOf(json,"value[i].end.dateTime");
        endTimeZone = CkJsonObject_stringOf(json,"value[i].end.timeZone");
        locationDisplayName = CkJsonObject_stringOf(json,"value[i].location.displayName");
        locationLocationType = CkJsonObject_stringOf(json,"value[i].location.locationType");
        locationUniqueId = CkJsonObject_stringOf(json,"value[i].location.uniqueId");
        locationUniqueIdType = CkJsonObject_stringOf(json,"value[i].location.uniqueIdType");
        organizerEmailAddressName = CkJsonObject_stringOf(json,"value[i].organizer.emailAddress.name");
        organizerEmailAddressAddress = CkJsonObject_stringOf(json,"value[i].organizer.emailAddress.address");
        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"value[i].categories");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            //  ...
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"value[i].locations");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            displayName = CkJsonObject_stringOf(json,"value[i].locations[j].displayName");
            locationType = CkJsonObject_stringOf(json,"value[i].locations[j].locationType");
            uniqueId = CkJsonObject_stringOf(json,"value[i].locations[j].uniqueId");
            uniqueIdType = CkJsonObject_stringOf(json,"value[i].locations[j].uniqueIdType");
            j = j + 1;
        }

        j = 0;
        count_j = CkJsonObject_SizeOfArray(json,"value[i].attendees");
        while (j < count_j) {
            CkJsonObject_putJ(json,j);
            v_type = CkJsonObject_stringOf(json,"value[i].attendees[j].type");
            statusResponse = CkJsonObject_stringOf(json,"value[i].attendees[j].status.response");
            statusTime = CkJsonObject_stringOf(json,"value[i].attendees[j].status.time");
            emailAddressName = CkJsonObject_stringOf(json,"value[i].attendees[j].emailAddress.name");
            emailAddressAddress = CkJsonObject_stringOf(json,"value[i].attendees[j].emailAddress.address");
            j = j + 1;
        }

        i = i + 1;
    }

    printf("Success.\n");


    CkHttp_Dispose(http);
    CkJsonObject_Dispose(jsonToken);
    CkJsonObject_Dispose(json);

    }