I've read lots of docs on the Microsoft Web Site and here, but I couldn't find a solution for my case yet. Basically what I need is to consume a Microsoft Rest API (Graph?) to send a message notification(To a specific user) from an external app, using preferably NodeJS, Java or Python.
The closest I think I got was here:
- https://learn.microsoft.com/en-us/graph/api/resources/chat?view=graph-rest-beta
- https://learn.microsoft.com/en-us/graph/api/resources/chatmessage?view=graph-rest-beta
I couldn't find the method send though. Also those docs are under beta version which there is a warning to not use it on production apps.
On the link below (Which is under 1.0 version), I can see the resource chatMessage(Preview) and the Method send, but when I click on it I get 404: https://learn.microsoft.com/en-us/graph/api/resources/teams-api-overview?view=graph-rest-1.0
My need is to send a one way communication (Not back and forth, no need of Bots), just a simple notification and that's it.
Is it possible to implement such a solution? Any reference that could help?