Unicode C++
Unicode C++
Create Group
See more Microsoft Group Examples
Create a new group as specified in the request body. You can create one of three types of groups:- Office 365 Group (unified group)
- Dynamic group
- Security group
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.
Chilkat Unicode C++ Downloads
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
bool success = false;
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
// Use your previously obtained access token as shown here:
// Get Microsoft Graph OAuth2 Access Token with Group.ReadWrite.All scope.
CkJsonObjectW jsonToken;
success = jsonToken.LoadFile(L"qa_data/tokens/msGraphGroup.json");
if (success == false) {
wprintf(L"%s\n",jsonToken.lastErrorText());
return;
}
http.put_AuthToken(jsonToken.stringOf(L"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
// }
CkJsonObjectW json;
json.UpdateString(L"description",L"Self help community for library");
json.UpdateString(L"displayName",L"Library Assist");
json.UpdateString(L"groupTypes[0]",L"Unified");
json.UpdateBool(L"mailEnabled",true);
json.UpdateString(L"mailNickname",L"library");
json.UpdateBool(L"securityEnabled",false);
// POST the JSON to https://graph.microsoft.com/v1.0/groups
CkHttpResponseW resp;
success = http.HttpJson(L"POST",L"https://graph.microsoft.com/v1.0/groups",json,L"application/json",resp);
if (success == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
json.Load(resp.bodyStr());
json.put_EmitCompact(false);
if (resp.get_StatusCode() != 201) {
wprintf(L"%s\n",json.emit());
wprintf(L"Failed, response status code = %d\n",resp.get_StatusCode());
return;
}
wprintf(L"%s\n",json.emit());
// 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
const wchar_t *id = 0;
const wchar_t *deletedDateTime = 0;
const wchar_t *classification = 0;
const wchar_t *createdDateTime = 0;
const wchar_t *description = 0;
const wchar_t *displayName = 0;
const wchar_t *mail = 0;
bool mailEnabled;
const wchar_t *mailNickname = 0;
const wchar_t *onPremisesLastSyncDateTime = 0;
const wchar_t *onPremisesSecurityIdentifier = 0;
const wchar_t *onPremisesSyncEnabled = 0;
const wchar_t *preferredDataLocation = 0;
const wchar_t *renewedDateTime = 0;
bool securityEnabled;
const wchar_t *visibility = 0;
int i;
int count_i;
const wchar_t *strVal = 0;
id = json.stringOf(L"id");
deletedDateTime = json.stringOf(L"deletedDateTime");
classification = json.stringOf(L"classification");
createdDateTime = json.stringOf(L"createdDateTime");
description = json.stringOf(L"description");
displayName = json.stringOf(L"displayName");
mail = json.stringOf(L"mail");
mailEnabled = json.BoolOf(L"mailEnabled");
mailNickname = json.stringOf(L"mailNickname");
onPremisesLastSyncDateTime = json.stringOf(L"onPremisesLastSyncDateTime");
onPremisesSecurityIdentifier = json.stringOf(L"onPremisesSecurityIdentifier");
onPremisesSyncEnabled = json.stringOf(L"onPremisesSyncEnabled");
preferredDataLocation = json.stringOf(L"preferredDataLocation");
renewedDateTime = json.stringOf(L"renewedDateTime");
securityEnabled = json.BoolOf(L"securityEnabled");
visibility = json.stringOf(L"visibility");
i = 0;
count_i = json.SizeOfArray(L"creationOptions");
while (i < count_i) {
json.put_I(i);
i = i + 1;
}
i = 0;
count_i = json.SizeOfArray(L"groupTypes");
while (i < count_i) {
json.put_I(i);
strVal = json.stringOf(L"groupTypes[i]");
i = i + 1;
}
i = 0;
count_i = json.SizeOfArray(L"proxyAddresses");
while (i < count_i) {
json.put_I(i);
strVal = json.stringOf(L"proxyAddresses[i]");
i = i + 1;
}
i = 0;
count_i = json.SizeOfArray(L"resourceBehaviorOptions");
while (i < count_i) {
json.put_I(i);
// ...
i = i + 1;
}
i = 0;
count_i = json.SizeOfArray(L"resourceProvisioningOptions");
while (i < count_i) {
json.put_I(i);
// ...
i = i + 1;
}
i = 0;
count_i = json.SizeOfArray(L"onPremisesProvisioningErrors");
while (i < count_i) {
json.put_I(i);
// ...
i = i + 1;
}
wprintf(L"Success.\n");
}