Skip to content
11:11 Systems
Rethink Connected
11:11 Systems11:11 Systems
  • Why 11:11
    • Submenu
      • Column 1
        • 11:11 Systems Consulting
          Consulting Services
          Global Regions
          Cloud Regions
          11:11 Systems Security
          Security

      • Column 2
        • Cloud Console
          Cloud Console
          Catalyst
          Planning and Assessment
          Compliance
          Compliance

      • WHY CHOOSE 11:11
      • Overview
      • Leadership
      • News & Media
      •  
      • Careers
      • Technology Partners
      • Customer Stories
  • Products & Services
    • Products & Services
      • CLOUD
      • Cloud Overview
      • Public Cloud
      • Private Cloud
      • Object Storage
      • Cloud Labs
      • Colocation/Bare-Metal
      • BACKUP
      • Backup Overview
      • Veeam Backup
      • Microsoft 365 Backup
      • Managed Backup for Cohesity
      • Data Protection Services
      • DISASTER RECOVERY
      • DRaaS Overview
      • DRaaS for Veeam
      • DRaaS for Zerto
      • DRaaS for Azure
      • Managed Recovery
      • Cloud Recovery
      • Cyber Incident Recovery
      • Business Continuity Consulting and Services
      • Physical Infrastructure Recovery Services
      • SECURITY
      • Security Overview
      • Continuous Risk Scanning
      • Managed Detection and Response
      • Managed SIEM
      • Managed EDR
      • Managed Firewall
      • CONNECTIVITY
      • Connectivity Overview
      • SD-WAN
      • Multi-Cloud Connect
      • Managed IP
  • Solutions
    • Solutions Submenu
      • INDUSTRY
      • Education
      • Financial
      • Government
      • Healthcare
  • Partners
    • Partners Submenu
      • Overview
      • Become a Partner
      • Partner Portals
  • Resources
    • Resources Submenu
      • Events
      • Webinars
      • News & Media
      • White Papers
      • Podcast
      • Data Sheets
      • Customer Stories
      • Innovation Blog
  • Support
    • Support Submenu
      • Contact Support
      • Product Documentation
      • API Documentation
Search:
  • Console Login
  • Contact
Header Right Menu
Free Trial
  • Why 11:11
    • Consulting Services
    • Cloud Console
    • Cloud Regions
    • Planning and Assessment
    • Security
    • Compliance
    • WHY CHOOSE 11:11
    • Overview
    • Leadership
    • News & Media
    • Careers
    • Technology Partners
    • Customer Stories
    • Blog
  • Products & Services
    • CLOUD
    • Cloud Overview
    • Public Cloud
    • Private Cloud
    • Object Storage
    • Cloud Labs
    • Colocation/Bare-Metal
    • BACKUP
    • Backup Overview
    • Veeam Backup
    • Microsoft 365 Backup
    • Managed Backup for Cohesity
    • Data Protection Services
    • DISASTER RECOVERY
    • DRaaS Overview
    • DRaaS for Veeam
    • DRaaS for Zerto
    • DRaaS for Azure
    • Managed Recovery
    • Cloud Recovery
    • Cyber Incident Recovery
    • Business Continuity Consulting and Services
    • Physical Infrastructure Recovery Services
    • SECURITY
    • Security Overview
    • Continuous Risk Scanning
    • Managed Detection and Response
    • Managed SIEM
    • Managed EDR
    • Managed Firewall
    • CLOUD CONNECTIVITY
    • Connectivity Overview
    • SD-WAN
    • Multi Cloud Connect
    • Managed IP
  • Solutions
    • INDUSTRY
    • Education
    • Financial
    • Government
    • Healthcare
    • Column 2
  • Partners
    • Overview
    • Become a Partner
    • Partner Portals
  • Resources
    • Events
    • Webinars
    • News & Media
    • Whitepapers
    • Podcast
    • Datasheets
    • Customer Stories
    • Innovation Blog
  • Support
    • Contact Support
    • Success Center
    • API Documentation
  • Contact
  • Console Login
  • Free Trial
Tags: Microsoft TeamsTech tipsMicrosoft 365 BackupVeeam
Author: Jim Jones
Date: March 31, 2023

The Saga Continues: VB365 and Microsoft Teams Graph Export API

Given the amount of time I’ve spent thinking, talking, and writing about Microsoft 365, the backup applications that support it (such as Veeam Backup for Microsoft 365), and the recent Microsoft Teams Graph Export API, I feel like I could write, produce, direct, and star in the latest saga set in a galaxy far, far away.

And yet here I am, back again. This time, because Microsoft decided to change course with how this capability will be handled — without telling anyone. The Saga Continues, indeed.

Recently, I started to hear of support cases where users were doing the needful — filling out Microsoft’s form and then, after the prescribed 5-7 business days, attempting to enable support for Teams Chat backup available in VB365 versions 6a and 7 — only to receive this error: “To call this API the app must be associated with an Azure subscription, see https://aka.ms/teams-api-payment-requirements for details.”

 

For those who have been dealing with the Teams Graph Export metered API, it’s a telltale sign that — for whatever reason — the Azure subscription ID associated with the organization modern application used to do backups was not available. Upon looking at the form, I noticed that it no longer requires a subscription ID — meaning that, once again, Microsoft has changed the process and not told anyone, leaving backup vendors as well as their partners scrambling to make sure our customers are properly suited. This has been well covered at this point by my colleague, Ian Sanderson, in his blog, titled, “Protecting Microsoft Teams Channel Chat Data: Are You Prepared?”

However, upon trying to enable this protection for myself, and as a matter of testing, I’ve found that while the instructions are correct when using Azure Cloudshell it doesn’t work if you’ve just installed the Azure CLI on a Windows system. This is due to a bug mentioned deep in the recesses of GitHub that essentially says that cloudshell is bash based, so you have to use different escape sequences to make it work. Furthermore, the Microsoft guide leaves out the step of creating a resource group to bind your App ID and Subscription ID together.

For all these reasons, I felt it necessary to create a follow up to Ian’s post to show you how to enable all this via Azure CLI on a Windows Server:

  1. If you haven’t already, install Azure CLI from the download or via Chocolatey “choco install -y azure-cli.”
  2. Login or have the account owner login to their Azure account with “az login –use-device-code.” This will effectively create a code for you to login to Microsoft, much like when you register an organization with Veeam Backup for Microsoft 365. Once processed, it will output a list of your active subscriptions. The ID field there should be your subscription ID, which you will need later.
  3. Next you will need to register the Microsoft.GraphServices namespace as shown in the Microsoft document. This is general using “az provider register –namespace Microsoft.GraphServices.”
  4. Then you will need to create a resource group to be the relationship will live within. This is done — assuming you want to create your resources in the Eastern US region of Azure — by using “az group create -l eastus -n myResourceGroup.”
  5. Finally, we must link the application ID (which you should have from the confirmation email from Microsoft) and the subscription ID (from your login above) and create a resource. This is where the formatting matters so simply select the all-caps text below to replace:
az resource create --resource-group koolaidInfoBilling --name myResourceGroup --resource-type Microsoft.GraphServices/accounts --properties "{\`"appId\`": \`"INSERTAPPIDHERE\`"}" --location Global --subscription “INSERTSUBSCRIPTIONIDHERE”

That should return a block of JSON that looks like this:

{
"extendedLocation": null,
"id":
"/subscriptions/SUBSCRIPIONID/resourceGroups/myResourceGroup/providers/Microsoft.GraphServices/accounts/myGraphAppBilling",
"identity": null,
"kind": null,
"location": "Global",
"managedBy": null,
"name": "myGraphAppBilling",
"plan": null,
"properties": {
"appId": "MYAPPLICATIONID",
"billingPlanId": "NEWBILLINGPLANID",
"provisioningState": "Succeeded"
},
"resourceGroup": "myResourceGroup",
"sku": null,
"systemData": {
"createdAt": "2023-03-27T17:16:29.8280947Z",
"createdByType": "User",
"lastModifiedAt": "2023-03-27T17:16:29.8280947Z",
"lastModifiedByType": "User"
},
"tags": null,
"type": "microsoft.graphservices/accounts"
}

Once that provisioningState shows as succeeded you should be able to go run your Teams Chat enabled VB365 job again and find some success.

Categories: Microsoft 365, VeeamBy Jim JonesMarch 31, 2023
Tags: Microsoft TeamsTech tipsMicrosoft 365 BackupVeeam

Author: Jim Jones

Jim Jones is a Senior Product Infrastructure Architect on 11:11 Systems' Product Innovation team. He has more than 20 years of experience working as a SysAdmin in the SMB and Service Provider space. Jim has certifications from Cisco Systems, Cohesity, Veeam, and VMware. He is also a member of Cisco Champions, Veeam Vanguard, and VMware vExpert programs. You can follow him online on most platforms as k00laidIT. Jim's personal blog is https://koolaid.info.

Post navigation

PreviousPrevious post:Keep your data moving in the right directionNextNext post:How 11:11 Systems and Veeam modernized Tree Top’s backup retention strategy

Related Posts

Veeam, AWS, and 11:11 Systems logos
Best in Class
September 14, 2023
Veeam Innovation Award
And the winner is….
May 17, 2023
Veeam 12
Veeam Backup for AWS and Service Provider Console
May 3, 2023
Tree Top
How 11:11 Systems and Veeam modernized Tree Top’s backup retention strategy
April 4, 2023
Veeam 12
Protecting Microsoft Teams Channel Chat Data: Are You Prepared?
March 15, 2023
Veeam 12
Veeam 12: Appropriate Direct to Object Storage Use Cases
February 15, 2023
PRODUCTS & SERVICES
  • Cloud
  • Backup
  • Disaster Recovery
  • Managed Security
  • Connectivity Solutions
  • Compliance
COMPANY
  • Why 11:11
  • Customer Stories
  • Careers
  • Leadership
  • Technology Partners
  • News & Media
  • Contact Support
CLOUD REGIONS
  • North America
  • EMEA
  • APAC
CONNECT
  • LinkedIn
  • Twitter
  • Youtube

© 2023 11:11 Systems Inc., All Rights Reserved | Privacy Notice |

Go to Top

https://1111systems.com/wp-content/uploads/2023/04/HPE-video-for-1111-SKO.mp4

https://1111systems.com/wp-content/uploads/2023/04/Dell-Global-Alliance-video-for-1111-SKO.mp4