
Announcements
Hi all,
I built the following flow:
after creating the teams channel with the first HTTP-Request we create a new planner board, next is creating buckets in this board. The second HTTP-Request is to embed the created planner board into a the created teams channel as a tab. Works fine so far but the planner tab is not loading (see picture below). If I add a new tab (manual) everything works fine. I assume that the problem might be in the second HTTP-request. That's the second HTTP-Request:
{
"displayName": "@{outputs('Kanal_erstellen')?['body/displayName']}",
"teamsApp@odata.bind": "https://graph.microsoft.com/beta/appCatalogs/teamsApps/com.microsoft.teamspace.tab.planner",
"configuration": {
"entityId": "@{outputs('Bucket_erstellen')?['body/planId']}",
"contentUrl": "https://tasks.office.com/Tenant.onmicrosoft.com/en-US/Home/Planner/#/plantaskboard?groupId=@{body('JSON_analysieren')?['owner']}&planId=@{outputs('Bucket_erstellen')?['body/planId']}",
"removeUrl": "",
"websiteUrl": "https://tasks.office.com/Tenant.onmicrosoft.com/en-US/Home/Planner/#/plantaskboard?groupId=@{body('JSON_analysieren')?['owner']}&planId=@{outputs('Bucket_erstellen')?['body/planId']}",
"name": "@{outputs('Kanal_erstellen')?['body/displayName']}"
}
}
Thanks for your help