Forum Discussion
Hiral_Patel
Jun 30, 2021Copper Contributor
Teams messaging extension not allowing to send multiple adaptive cards.
I have created one teams messaging extension, and trying to pass array of adaptive card attachments on response to an action based command show multiple cards but its just picking up first card and i...
- Jun 30, 2021
Hiral_Patel - Response to action based command supports only one card. Could you please confirm what you are trying to achieve? Are you looking to provide search responses something similar to this?
ChetanSharma-msft
May 31, 2022Microsoft
We will investigate on it from our end and get back to you.
Nivedipa-MSFT
Jun 01, 2022Microsoft
Hiral_Patel, @MHong2012 - We are able to repro this issue and we have raised a bug for it.
We will let you know once we get updates on it.
- MHong2012Jun 01, 2022Copper ContributorThank you Nivedipa and ChetanSharma.
- Nivedipa-MSFTJul 14, 2022MicrosoftHiral_Patel, MHong2012 - Engineering team has confirmed that this behaviour is by design.
- HARIBABU_PADec 13, 2022Copper Contributor
{ "composeExtension": { "attachmentLayout": "list", "type": "result", "attachments": [ { "contentType": "application/vnd.microsoft.card.thumbnail", "content": { "title": "1.5 Contoso (1)", "subtitle": "12-05-2022 | Demo User Admin", "images": [ { "url": "https://services.klobot.ai/apps/live/netdocshare/assets/images/folderIcons/teams32x32/icon-Power.png", "alt": "Icon" } ], "buttons": [ { "type": "openUrl", "title": "View", "value": "https://klobotappsdev.azurewebsites.net/apps/netdocshareservice//api/v1.0/imconnector/teams/Mjk6MXd4b1ZSTkF0b1hjYjR2MTl6ZDhVUDZHUjZUZUNtSVJGbm9VVFVQcll1cVc4NE5ESktrb3VPUlhCeGtheDVtWWdGc1hDSXpXYnVRZUdwLWRlVHp2Z3Vn/view" }, { "type": "openUrl", "title": "Download", "value": "https://klobotappsdev.azurewebsites.net/apps/netdocshareservice//api/v1.0/imconnector/teams/Mjk6MXd4b1ZSTkF0b1hjYjR2MTl6ZDhVUDZHUjZUZUNtSVJGbm9VVFVQcll1cVc4NE5ESktrb3VPUlhCeGtheDVtWWdGc1hDSXpXYnVRZUdwLWRlVHp2Z3Vn/download" }, { "type": "openUrl", "title": "Check out", "value": "https://klobotappsdev.azurewebsites.net/apps/netdocshareservice//api/v1.0/imconnector/teams/Mjk6MXd4b1ZSTkF0b1hjYjR2MTl6ZDhVUDZHUjZUZUNtSVJGbm9VVFVQcll1cVc4NE5ESktrb3VPUlhCeGtheDVtWWdGc1hDSXpXYnVRZUdwLWRlVHp2Z3Vn/checkout" } ] } }, { "contentType": "application/vnd.microsoft.card.thumbnail", "content": { "title": "MS_test_1", "subtitle": "12-12-2022 | Demo User Admin", "images": [ { "url": "https://services.klobot.ai/apps/live/netdocshare/assets/images/folderIcons/teams32x32/icon-Word.png", "alt": "Icon" } ], "buttons": [ { "type": "openUrl", "title": "View", "value": "https://klobotappsdev.azurewebsites.net/apps/netdocshareservice//api/v1.0/imconnector/teams/Mjk6MXd4b1ZSTkF0b1hjYjR2MTl6ZDhVUDZHUjZUZUNtSVJGbm9VVFVQcll1cVc4NE5ESktrb3VPUlhCeGtheDVtWWdGc1hDSXpXYnVRZUdwLWRlVHp2Z3Vn/view" }, { "type": "openUrl", "title": "Download", "value": "https://klobotappsdev.azurewebsites.net/apps/netdocshareservice//api/v1.0/imconnector/teams/Mjk6MXd4b1ZSTkF0b1hjYjR2MTl6ZDhVUDZHUjZUZUNtSVJGbm9VVFVQcll1cVc4NE5ESktrb3VPUlhCeGtheDVtWWdGc1hDSXpXYnVRZUdwLWRlVHp2Z3Vn/download" }, { "type": "openUrl", "title": "Check out", "value": "https://klobotappsdev.azurewebsites.net/apps/netdocshareservice//api/v1.0/imconnector/teams/Mjk6MXd4b1ZSTkF0b1hjYjR2MTl6ZDhVUDZHUjZUZUNtSVJGbm9VVFVQcll1cVc4NE5ESktrb3VPUlhCeGtheDVtWWdGc1hDSXpXYnVRZUdwLWRlVHp2Z3Vn/checkout" } ] } } ] } }
Hi the above response is for Action type with Dynamic input, we are loading a form collect information and sending back the list of cards. But the result takes only the first and shows. Still is it a correct behavior?