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
(Unicode C++) Microsoft Teams - Create Team (complex request)Create a team with multiple channels, installed apps, and pinned tabs using delegated permissions For more information, see https://docs.microsoft.com/en-us/graph/api/team-post?view=graph-rest-1.0&tabs=http#example-3-create-a-team-with-multiple-channels-installed-apps-and-pinned-tabs-using-delegated-permissions
#include <CkHttpW.h> #include <CkJsonObjectW.h> #include <CkHttpResponseW.h> void ChilkatSample(void) { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. CkHttpW http; bool success; // Build the following HTTP request: // POST https://graph.microsoft.com/v1.0/teams // Content-Type: application/json // // { // "template@odata.bind": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')", // "visibility": "Private", // "displayName": "Sample Engineering Team", // "description": "This is a sample engineering team, used to showcase the range of properties supported by this API", // "channels": [ // { // "displayName": "Announcements", // "isFavoriteByDefault": true, // "description": "This is a sample announcements channel that is favorited by default. Use this channel to make important team, product, and service announcements." // }, // { // "displayName": "Training", // "isFavoriteByDefault": true, // "description": "This is a sample training channel, that is favorited by default, and contains an example of pinned website and YouTube tabs.", // "tabs": [ // { // "teamsApp@odata.bind": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.web')", // "name": "A Pinned Website", // "configuration": { // "contentUrl": "https://docs.microsoft.com/microsoftteams/microsoft-teams" // } // }, // { // "teamsApp@odata.bind": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.youtube')", // "name": "A Pinned YouTube Video", // "configuration": { // "contentUrl": "https://tabs.teams.microsoft.com/Youtube/Home/YoutubeTab?videoId=X8krAMdGvCQ", // "websiteUrl": "https://www.youtube.com/watch?v=X8krAMdGvCQ" // } // } // ] // }, // { // "displayName": "Planning", // "description": "This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu.", // "isFavoriteByDefault": false // }, // { // "displayName": "Issues and Feedback", // "description": "This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu." // } // ], // "memberSettings": { // "allowCreateUpdateChannels": true, // "allowDeleteChannels": true, // "allowAddRemoveApps": true, // "allowCreateUpdateRemoveTabs": true, // "allowCreateUpdateRemoveConnectors": true // }, // "guestSettings": { // "allowCreateUpdateChannels": false, // "allowDeleteChannels": false // }, // "funSettings": { // "allowGiphy": true, // "giphyContentRating": "Moderate", // "allowStickersAndMemes": true, // "allowCustomMemes": true // }, // "messagingSettings": { // "allowUserEditMessages": true, // "allowUserDeleteMessages": true, // "allowOwnerDeleteMessages": true, // "allowTeamMentions": true, // "allowChannelMentions": true // }, // "discoverySettings": { // "showInTeamsSearchAndSuggestions": true // }, // "installedApps": [ // { // "teamsApp@odata.bind": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.vsts')" // }, // { // "teamsApp@odata.bind": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('1542629c-01b3-4a6d-8f76-1938b779e48d')" // } // ] // } // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON CkJsonObjectW json; json.UpdateString(L"\"template@odata.bind\"",L"https://graph.microsoft.com/v1.0/teamsTemplates('standard')"); json.UpdateString(L"visibility",L"Private"); json.UpdateString(L"displayName",L"Sample Engineering Team"); json.UpdateString(L"description",L"This is a sample engineering team, used to showcase the range of properties supported by this API"); json.UpdateString(L"channels[0].displayName",L"Announcements"); json.UpdateBool(L"channels[0].isFavoriteByDefault",true); json.UpdateString(L"channels[0].description",L"This is a sample announcements channel that is favorited by default. Use this channel to make important team, product, and service announcements."); json.UpdateString(L"channels[1].displayName",L"Training"); json.UpdateBool(L"channels[1].isFavoriteByDefault",true); json.UpdateString(L"channels[1].description",L"This is a sample training channel, that is favorited by default, and contains an example of pinned website and YouTube tabs."); json.UpdateString(L"channels[1].tabs[0].\"teamsApp@odata.bind\"",L"https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.web')"); json.UpdateString(L"channels[1].tabs[0].name",L"A Pinned Website"); json.UpdateString(L"channels[1].tabs[0].configuration.contentUrl",L"https://docs.microsoft.com/microsoftteams/microsoft-teams"); json.UpdateString(L"channels[1].tabs[1].\"teamsApp@odata.bind\"",L"https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.youtube')"); json.UpdateString(L"channels[1].tabs[1].name",L"A Pinned YouTube Video"); json.UpdateString(L"channels[1].tabs[1].configuration.contentUrl",L"https://tabs.teams.microsoft.com/Youtube/Home/YoutubeTab?videoId=X8krAMdGvCQ"); json.UpdateString(L"channels[1].tabs[1].configuration.websiteUrl",L"https://www.youtube.com/watch?v=X8krAMdGvCQ"); json.UpdateString(L"channels[2].displayName",L"Planning"); json.UpdateString(L"channels[2].description",L"This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu."); json.UpdateBool(L"channels[2].isFavoriteByDefault",false); json.UpdateString(L"channels[3].displayName",L"Issues and Feedback"); json.UpdateString(L"channels[3].description",L"This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu."); json.UpdateBool(L"memberSettings.allowCreateUpdateChannels",true); json.UpdateBool(L"memberSettings.allowDeleteChannels",true); json.UpdateBool(L"memberSettings.allowAddRemoveApps",true); json.UpdateBool(L"memberSettings.allowCreateUpdateRemoveTabs",true); json.UpdateBool(L"memberSettings.allowCreateUpdateRemoveConnectors",true); json.UpdateBool(L"guestSettings.allowCreateUpdateChannels",false); json.UpdateBool(L"guestSettings.allowDeleteChannels",false); json.UpdateBool(L"funSettings.allowGiphy",true); json.UpdateString(L"funSettings.giphyContentRating",L"Moderate"); json.UpdateBool(L"funSettings.allowStickersAndMemes",true); json.UpdateBool(L"funSettings.allowCustomMemes",true); json.UpdateBool(L"messagingSettings.allowUserEditMessages",true); json.UpdateBool(L"messagingSettings.allowUserDeleteMessages",true); json.UpdateBool(L"messagingSettings.allowOwnerDeleteMessages",true); json.UpdateBool(L"messagingSettings.allowTeamMentions",true); json.UpdateBool(L"messagingSettings.allowChannelMentions",true); json.UpdateBool(L"discoverySettings.showInTeamsSearchAndSuggestions",true); json.UpdateString(L"installedApps[0].\"teamsApp@odata.bind\"",L"https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.vsts')"); json.UpdateString(L"installedApps[1].\"teamsApp@odata.bind\"",L"https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('1542629c-01b3-4a6d-8f76-1938b779e48d')"); http.SetRequestHeader(L"Content-type",L"application/json"); // Adds the "Authorization: Bearer ACCESS_TOKEN" header. http.put_AuthToken(L"ACCESS_TOKEN"); CkHttpResponseW *resp = http.PostJson3(L"https://graph.microsoft.com/v1.0/teams",L"application/json",json); if (http.get_LastMethodSuccess() == false) { wprintf(L"%s\n",http.lastErrorText()); return; } // A successful response is indicated by a 202 response status code and an empty response body. wprintf(L"Response Status Code: %d\n",resp->get_StatusCode()); wprintf(L"Response Body:\n"); wprintf(L"%s\n",resp->bodyStr()); if (resp->get_StatusCode() >= 400) { wprintf(L"Response Header:\n"); wprintf(L"%s\n",resp->header()); wprintf(L"Failed.\n"); } delete resp; } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.