We have automation that we plan to send chat messages to users with. So like if your password is about to expire, or there is a security event, we will be firing one to one messages using the below endpoints. Just trying to understand the rate limiting, and throttling on this end point.
"https://graph.microsoft.com/beta/chats/$chatID/messages"
I saw a refernce for one to one chats, it looks like 2rps ( 2 requests per second) but it doesnt specify a maximum per day. It does however specify a maximum of 3000 per day going into a given channel.
https://docs.microsoft.com/en-us/graph/throttling#microsoft-teams-service-limits
TLDR: trying to understand if I had to send a message to all 20k or so users on any given day, what type of throttling or limits we would potentially run into.
Thanks.