I'm trying to use an HTTP call to create a Team from a template. Should be easy, below is the request body:
But because the odata.type is in there, it wont allow the Flow to save.... this is a bug for sure and a very annoying one. Anyone know if there's a solution they're working on to let us do simple things like this???
{
"template@odata.bind": "https://graph.microsoft.com/v1.0/teamsTemplates('standard')",
"displayName": "My New Team",
"description": "Created from template",
"members": [
{
"@odata.type": "#microsoft.graph.aadUserConversationMember",
"roles": ["owner"],
"user@odata.bind": "https://graph.microsoft.com/v1.0/users('user@example.com')"
}
]
}