Forum Discussion
RichardBegg
Nov 25, 2020Copper Contributor
Creating a Team via the Graph giving "The navigation bind for the user was missing in request"
Hi all We have a solution running for a number of months now using the Graph to create Teams. It has been working fine up until recently (Monday was when we first noticed), but now when we attem...
- Nov 25, 2020
Hello RichardBegg,
I had the same error and searching in Microsoft documentation I found this and based on it, I sent the request in the following way:
{ "template@odata.bind":"https://graph.microsoft.com/v1.0/teamsTemplates('standard')", "displayName":"My Sample Team", "description":"My Sample Team’s Description", "members":[ { "@odata.type":"#microsoft.graph.aadUserConversationMember", "roles":[ "owner" ], "user@odata.bind":"https://graph.microsoft.com/v1.0/users('0040b377-61d8-43db-94f5-81374122dc7e')" } ] }
The request was success.
dhiwakar_ravikumar
Nov 25, 2020Copper Contributor
RichardBegg Were you able to resolve this ? I started facing this issue as well.