Sample code for 30+ languages & platforms
PowerBuilder

Microsoft Teams - List Joined Teams

See more Microsoft Teams Examples

Get the teams in Microsoft Teams that the user is a direct member of.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_Http
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_Id
string ls_CreatedDateTime
string ls_DisplayName
string ls_Description
string ls_InternalId
string ls_Classification
string ls_Specialization
string ls_Visibility
string ls_WebUrl
integer li_IsArchived
string ls_IsMembershipLimitedToOwners
string ls_MemberSettings
string ls_GuestSettings
string ls_MessagingSettings
string ls_FunSettings
string ls_DiscoverySettings
string ls_Odata_context
integer li_Odata_count
integer i
integer li_Count_i

li_Success = 0

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

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// Implements the following CURL command:

// curl -X GET https://graph.microsoft.com/v1.0/me/joinedTeams \
//   -H 'authorization: Bearer ACCESS_TOKEN'

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

// Adds the "Authorization: Bearer ACCESS_TOKEN" header.
loo_Http.AuthToken = "ACCESS_TOKEN"

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")

li_Success = loo_Http.QuickGetSb("https://graph.microsoft.com/v1.0/me/joinedTeams",loo_SbResponseBody)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
    Write-Debug "Response Header:"
    Write-Debug loo_Http.LastHeader
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#teams",
//   "@odata.count": 3,
//   "value": [
//     {
//       "id": "285c8d65-d8b5-447a-91c7-85593d50c826",
//       "createdDateTime": null,
//       "displayName": "Chilkat Software, Inc.",
//       "description": null,
//       "internalId": null,
//       "classification": null,
//       "specialization": null,
//       "visibility": null,
//       "webUrl": null,
//       "isArchived": false,
//       "isMembershipLimitedToOwners": null,
//       "memberSettings": null,
//       "guestSettings": null,
//       "messagingSettings": null,
//       "funSettings": null,
//       "discoverySettings": null
//     },
//     {
//       "id": "e527a8b1-5620-4dcf-9b29-a4713e9afa72",
//       "createdDateTime": null,
//       "displayName": "My Sample Team",
//       "description": "My Sample Team\u2019s Description",
//       "internalId": null,
//       "classification": null,
//       "specialization": null,
//       "visibility": null,
//       "webUrl": null,
//       "isArchived": false,
//       "isMembershipLimitedToOwners": null,
//       "memberSettings": null,
//       "guestSettings": null,
//       "messagingSettings": null,
//       "funSettings": null,
//       "discoverySettings": null
//     },
//     {
//       "id": "bc6ef2f4-d51e-4362-9a17-11ad3382b8ad",
//       "createdDateTime": null,
//       "displayName": "Sample Engineering Team",
//       "description": "This is a sample engineering team, used to showcase the range of properties supported by this API",
//       "internalId": null,
//       "classification": null,
//       "specialization": null,
//       "visibility": null,
//       "webUrl": null,
//       "isArchived": false,
//       "isMembershipLimitedToOwners": null,
//       "memberSettings": null,
//       "guestSettings": null,
//       "messagingSettings": null,
//       "funSettings": null,
//       "discoverySettings": null
//     }
//   ]
// }

// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON

ls_Odata_context = loo_JResp.StringOf("~"@odata.context~"")
li_Odata_count = loo_JResp.IntOf("~"@odata.count~"")
i = 0
li_Count_i = loo_JResp.SizeOfArray("value")
do while i < li_Count_i
    loo_JResp.I = i
    ls_Id = loo_JResp.StringOf("value[i].id")
    ls_CreatedDateTime = loo_JResp.StringOf("value[i].createdDateTime")
    ls_DisplayName = loo_JResp.StringOf("value[i].displayName")
    ls_Description = loo_JResp.StringOf("value[i].description")
    ls_InternalId = loo_JResp.StringOf("value[i].internalId")
    ls_Classification = loo_JResp.StringOf("value[i].classification")
    ls_Specialization = loo_JResp.StringOf("value[i].specialization")
    ls_Visibility = loo_JResp.StringOf("value[i].visibility")
    ls_WebUrl = loo_JResp.StringOf("value[i].webUrl")
    li_IsArchived = loo_JResp.BoolOf("value[i].isArchived")
    ls_IsMembershipLimitedToOwners = loo_JResp.StringOf("value[i].isMembershipLimitedToOwners")
    ls_MemberSettings = loo_JResp.StringOf("value[i].memberSettings")
    ls_GuestSettings = loo_JResp.StringOf("value[i].guestSettings")
    ls_MessagingSettings = loo_JResp.StringOf("value[i].messagingSettings")
    ls_FunSettings = loo_JResp.StringOf("value[i].funSettings")
    ls_DiscoverySettings = loo_JResp.StringOf("value[i].discoverySettings")
    i = i + 1
loop


destroy loo_Http
destroy loo_SbResponseBody
destroy loo_JResp