Can I create channels in Microsoft Teams using the API? -
i not programmer - trying find answer question microsoft teams. i'd dev team automate processes in teams including creation , archive of channels. can let me know if possible via api?
tia
since last week, channels available in microsoft graph api (on beta endpoint). create channel, can post /channel endpoint:
post https://graph.microsoft.com/beta/groups/{id}/channels content-type: application/json { "displayname": "channel name", "description": "channel description" }
more info method available on microsoft graph documentation page: https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/group_post_channels
Comments
Post a Comment