Hi @Stephan Grotz
Thank you for sharing the details you have gathered so far. It really helps me better understand the situation and narrow down where I should look next.
Based on my research, here are some additional areas you may consider checking:
1/ Check Entra ID sign in logs for the Bot Framework service principal
Azure Bot Service uses its own first party service principal to authenticate when forwarding messages from the Teams channel. If a Conditional Access policy in your tenant is blocking this principal, the forwarding may not go through as expected.
- Go to Microsoft Entra ID > Enterprise Applications
- Search for App Idd, for example:
f3723d34-6ff5-4ceb-a148-d99dcd2511fc (Bot Framework Dev Portal)
- Open Sign-in logs and filter to the last 24 hours
- Look for any failed or interrupted sign-in attempts
If you find any failures, please check which Conditional Access policy is involved and consider adding an exclusion for this service principal.
2/ Verify the bot resource app type
For UAMI based bots, the bot resource needs to explicitly declare UserAssignedMSI as its app type. If this value is missing or set differently, the Bot Service may not use the expected authentication flow for message forwarding.
Could you please confirm whether the appType is returning UserAssignedMSI?
3/ Reinstall the Teams app after recreating the channel
I understand that you have already deleted and recreated the Teams channel. However, I did not see any mention of reinstalling the Teams app afterward.
The Teams client may still cache the previous channel registration. Without reinstalling, messages could still be routed to the old configuration.
4/ Run an echo bot isolation test
You could deploy a simple echo bot using a basic client secret setup, without UAMI or Managed Identity.
Then add the Teams channel and test it within the same tenant and user context. This can help determine whether the behavior is related to the current bot configuration.
I hope these suggestions help provide some direction. If you have any updates after trying these steps, please feel free to share.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.