Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Classic ASP Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(Classic ASP) 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

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

set http = Server.CreateObject("Chilkat_9_5_0.Http")

' 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

set json = Server.CreateObject("Chilkat_9_5_0.JsonObject")
success = json.UpdateString("""template@odata.bind""","https://graph.microsoft.com/v1.0/teamsTemplates('standard')")
success = json.UpdateString("visibility","Private")
success = json.UpdateString("displayName","Sample Engineering Team")
success = json.UpdateString("description","This is a sample engineering team, used to showcase the range of properties supported by this API")
success = json.UpdateString("channels[0].displayName","Announcements")
success = json.UpdateBool("channels[0].isFavoriteByDefault",1)
success = json.UpdateString("channels[0].description","This is a sample announcements channel that is favorited by default. Use this channel to make important team, product, and service announcements.")
success = json.UpdateString("channels[1].displayName","Training")
success = json.UpdateBool("channels[1].isFavoriteByDefault",1)
success = json.UpdateString("channels[1].description","This is a sample training channel, that is favorited by default, and contains an example of pinned website and YouTube tabs.")
success = json.UpdateString("channels[1].tabs[0].""teamsApp@odata.bind""","https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.web')")
success = json.UpdateString("channels[1].tabs[0].name","A Pinned Website")
success = json.UpdateString("channels[1].tabs[0].configuration.contentUrl","https://docs.microsoft.com/microsoftteams/microsoft-teams")
success = json.UpdateString("channels[1].tabs[1].""teamsApp@odata.bind""","https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.youtube')")
success = json.UpdateString("channels[1].tabs[1].name","A Pinned YouTube Video")
success = json.UpdateString("channels[1].tabs[1].configuration.contentUrl","https://tabs.teams.microsoft.com/Youtube/Home/YoutubeTab?videoId=X8krAMdGvCQ")
success = json.UpdateString("channels[1].tabs[1].configuration.websiteUrl","https://www.youtube.com/watch?v=X8krAMdGvCQ")
success = json.UpdateString("channels[2].displayName","Planning")
success = json.UpdateString("channels[2].description","This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu.")
success = json.UpdateBool("channels[2].isFavoriteByDefault",0)
success = json.UpdateString("channels[3].displayName","Issues and Feedback")
success = json.UpdateString("channels[3].description","This is a sample of a channel that is not favorited by default, these channels will appear in the more channels overflow menu.")
success = json.UpdateBool("memberSettings.allowCreateUpdateChannels",1)
success = json.UpdateBool("memberSettings.allowDeleteChannels",1)
success = json.UpdateBool("memberSettings.allowAddRemoveApps",1)
success = json.UpdateBool("memberSettings.allowCreateUpdateRemoveTabs",1)
success = json.UpdateBool("memberSettings.allowCreateUpdateRemoveConnectors",1)
success = json.UpdateBool("guestSettings.allowCreateUpdateChannels",0)
success = json.UpdateBool("guestSettings.allowDeleteChannels",0)
success = json.UpdateBool("funSettings.allowGiphy",1)
success = json.UpdateString("funSettings.giphyContentRating","Moderate")
success = json.UpdateBool("funSettings.allowStickersAndMemes",1)
success = json.UpdateBool("funSettings.allowCustomMemes",1)
success = json.UpdateBool("messagingSettings.allowUserEditMessages",1)
success = json.UpdateBool("messagingSettings.allowUserDeleteMessages",1)
success = json.UpdateBool("messagingSettings.allowOwnerDeleteMessages",1)
success = json.UpdateBool("messagingSettings.allowTeamMentions",1)
success = json.UpdateBool("messagingSettings.allowChannelMentions",1)
success = json.UpdateBool("discoverySettings.showInTeamsSearchAndSuggestions",1)
success = json.UpdateString("installedApps[0].""teamsApp@odata.bind""","https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('com.microsoft.teamspace.tab.vsts')")
success = json.UpdateString("installedApps[1].""teamsApp@odata.bind""","https://graph.microsoft.com/v1.0/appCatalogs/teamsApps('1542629c-01b3-4a6d-8f76-1938b779e48d')")

http.SetRequestHeader "Content-type","application/json"

' Adds the "Authorization: Bearer ACCESS_TOKEN" header.
http.AuthToken = "ACCESS_TOKEN"

' resp is a Chilkat_9_5_0.HttpResponse
Set resp = http.PostJson3("https://graph.microsoft.com/v1.0/teams","application/json",json)
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

' A successful response is indicated by a 202 response status code and an empty response body.
Response.Write "<pre>" & Server.HTMLEncode( "Response Status Code: " & resp.StatusCode) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( "Response Body:") & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( resp.BodyStr) & "</pre>"

If (resp.StatusCode >= 400) Then
    Response.Write "<pre>" & Server.HTMLEncode( "Response Header:") & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( resp.Header) & "</pre>"
    Response.Write "<pre>" & Server.HTMLEncode( "Failed.") & "</pre>"
End If


%>
</body>
</html>

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.