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
(C) Create GroupCreate a new group as specified in the request body. You can create one of three types of groups:
This operation returns by default only a subset of the properties for each group. These default properties are noted in the Properties section. See https://docs.microsoft.com/en-us/graph/api/group-post-groups?view=graph-rest-1.0 for more information.
#include <C_CkHttp.h> #include <C_CkJsonObject.h> #include <C_CkHttpResponse.h> void ChilkatSample(void) { HCkHttp http; HCkJsonObject jsonToken; BOOL success; HCkJsonObject json; HCkHttpResponse resp; const char *id; const char *deletedDateTime; const char *classification; const char *createdDateTime; const char *description; const char *displayName; const char *mail; BOOL mailEnabled; const char *mailNickname; const char *onPremisesLastSyncDateTime; const char *onPremisesSecurityIdentifier; const char *onPremisesSyncEnabled; const char *preferredDataLocation; const char *renewedDateTime; BOOL securityEnabled; const char *visibility; int i; int count_i; const char *strVal; // 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 Group.ReadWrite.All scope. jsonToken = CkJsonObject_Create(); success = CkJsonObject_LoadFile(jsonToken,"qa_data/tokens/msGraphGroup.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")); // Create a JSON body for the HTTP POST // Use this online tool to generate the code from sample JSON: // Generate Code to Create JSON // { // "description": "Self help community for library", // "displayName": "Library Assist", // "groupTypes": [ // "Unified" // ], // "mailEnabled": true, // "mailNickname": "library", // "securityEnabled": false // } json = CkJsonObject_Create(); CkJsonObject_UpdateString(json,"description","Self help community for library"); CkJsonObject_UpdateString(json,"displayName","Library Assist"); CkJsonObject_UpdateString(json,"groupTypes[0]","Unified"); CkJsonObject_UpdateBool(json,"mailEnabled",TRUE); CkJsonObject_UpdateString(json,"mailNickname","library"); CkJsonObject_UpdateBool(json,"securityEnabled",FALSE); // POST the JSON to https://graph.microsoft.com/v1.0/groups resp = CkHttp_PostJson3(http,"https://graph.microsoft.com/v1.0/groups","application/json",json); if (CkHttp_getLastMethodSuccess(http) == FALSE) { printf("%s\n",CkHttp_lastErrorText(http)); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonToken); CkJsonObject_Dispose(json); return; } CkJsonObject_Load(json,CkHttpResponse_bodyStr(resp)); CkJsonObject_putEmitCompact(json,FALSE); if (CkHttpResponse_getStatusCode(resp) != 201) { printf("%s\n",CkJsonObject_emit(json)); printf("Failed, response status code = %d\n",CkHttpResponse_getStatusCode(resp)); CkHttpResponse_Dispose(resp); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonToken); CkJsonObject_Dispose(json); return; } CkHttpResponse_Dispose(resp); printf("%s\n",CkJsonObject_emit(json)); // A sample response: // (See code for parsing this response below..) // { // "id": "b320ee12-b1cd-4cca-b648-a437be61c5cd", // "deletedDateTime": null, // "classification": null, // "createdDateTime": "2018-12-22T00:51:37Z", // "creationOptions": [], // "description": "Self help community for library", // "displayName": "Library Assist", // "groupTypes": [ // "Unified" // ], // "mail": "library7423@contoso.com", // "mailEnabled": true, // "mailNickname": "library", // "onPremisesLastSyncDateTime": null, // "onPremisesSecurityIdentifier": null, // "onPremisesSyncEnabled": null, // "preferredDataLocation": "CAN", // "proxyAddresses": [ // "SMTP:library7423@contoso.com" // ], // "renewedDateTime": "2018-12-22T00:51:37Z", // "resourceBehaviorOptions": [], // "resourceProvisioningOptions": [], // "securityEnabled": false, // "visibility": "Public", // "onPremisesProvisioningErrors": [] // } // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON id = CkJsonObject_stringOf(json,"id"); deletedDateTime = CkJsonObject_stringOf(json,"deletedDateTime"); classification = CkJsonObject_stringOf(json,"classification"); createdDateTime = CkJsonObject_stringOf(json,"createdDateTime"); description = CkJsonObject_stringOf(json,"description"); displayName = CkJsonObject_stringOf(json,"displayName"); mail = CkJsonObject_stringOf(json,"mail"); mailEnabled = CkJsonObject_BoolOf(json,"mailEnabled"); mailNickname = CkJsonObject_stringOf(json,"mailNickname"); onPremisesLastSyncDateTime = CkJsonObject_stringOf(json,"onPremisesLastSyncDateTime"); onPremisesSecurityIdentifier = CkJsonObject_stringOf(json,"onPremisesSecurityIdentifier"); onPremisesSyncEnabled = CkJsonObject_stringOf(json,"onPremisesSyncEnabled"); preferredDataLocation = CkJsonObject_stringOf(json,"preferredDataLocation"); renewedDateTime = CkJsonObject_stringOf(json,"renewedDateTime"); securityEnabled = CkJsonObject_BoolOf(json,"securityEnabled"); visibility = CkJsonObject_stringOf(json,"visibility"); i = 0; count_i = CkJsonObject_SizeOfArray(json,"creationOptions"); while (i < count_i) { CkJsonObject_putI(json,i); i = i + 1; } i = 0; count_i = CkJsonObject_SizeOfArray(json,"groupTypes"); while (i < count_i) { CkJsonObject_putI(json,i); strVal = CkJsonObject_stringOf(json,"groupTypes[i]"); i = i + 1; } i = 0; count_i = CkJsonObject_SizeOfArray(json,"proxyAddresses"); while (i < count_i) { CkJsonObject_putI(json,i); strVal = CkJsonObject_stringOf(json,"proxyAddresses[i]"); i = i + 1; } i = 0; count_i = CkJsonObject_SizeOfArray(json,"resourceBehaviorOptions"); while (i < count_i) { CkJsonObject_putI(json,i); // ... i = i + 1; } i = 0; count_i = CkJsonObject_SizeOfArray(json,"resourceProvisioningOptions"); while (i < count_i) { CkJsonObject_putI(json,i); // ... i = i + 1; } i = 0; count_i = CkJsonObject_SizeOfArray(json,"onPremisesProvisioningErrors"); while (i < count_i) { CkJsonObject_putI(json,i); // ... i = i + 1; } printf("Success.\n"); CkHttp_Dispose(http); CkJsonObject_Dispose(jsonToken); CkJsonObject_Dispose(json); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.