Actionable notifications sent on MS Teams do not show complete short description and descriptionIssue Actionable notifications sent on MS Teams do not show complete short description and description also do not have option to scroll and read the complete text. ResolutionReview the flow execution context which is responsible to post complete request payload to Adaptive card at MS teams end. Check if the payload is sent correctly. Sample message is below {"type":"message","serviceUrl":"https://teamsproxy.service-now.com//teams/va/outbound/","originServiceUrl":"https://smba.trafficmanager.net/in/","channelData":{"tenant":{"id":"98126b57-e48d-4b10-b98a-6ef20e88d26b"}},"attachments":[{"contentType":"application/vnd.microsoft.card.adaptive","content":{"$schema":"http://adaptivecards.io/schemas/adaptive-card.json","type":"AdaptiveCard","body":[{"type":"Container","items":[{"size":"medium","weight":"bolder","text":"Approval for: https://instancename.service-now.com/nav_to.do?uri=%2Fproblem.do%3Fsys_id%3D-1%26sysparm_stack%3Dproblem_list.do","type":"TextBlock"},{"maxLines":3,"text":"https://instancename.service-now.com/nav_to.do?uri=%2Fproblem.do%3Fsys_id%3D-1%26sysparm_stack%3Dproblem_list.do\r\nhttps://instancename.service-now.com/nav_to.do?uri=%2Fproblem.do%3Fsys_id%3D-1%26sysparm_stack%3Dproblem_list.do\r\nhttps://instancename.service-now.com/nav_to.do?uri=%2Fproblem.do%3Fsys_id%3D-1%26sysparm_stack%3Dproblem_list.do\r\nhttps://instancename.service-now.com/nav_to.do?uri=%2Fproblem.do%3Fsys_id%3D-1%26sysparm_stack%3Dproblem_list.do","type":"TextBlock","wrap":true},{"type":"FactSet","facts":[{"title":"Number","value":"PRB0040005"},{"title":"State","value":"Requested"}]},{"type":"ActionSet","actions":[{"type":"Action.OpenUrl","title":"View details","url":"https://instancename.service-now.com/sp?id=approval&table=sysapproval_approver&sys_id=851b91501b907010951ac841604bcbaa"}]}]},{"type":"Container","items":[{"text":"Provide a reason for rejections or add approval notes","type":"TextBlock"},{"isRequired":true,"isMultiline":true,"id":"approval_note","placeholder":"When you reject something, let people know why","type":"Input.Text","maxLength":500},{"type":"ActionSet","actions":[{"data":{"sysId":"851b91501b907010951ac841604bcbaa","action_name":"approve","action_identifier":"com.snc.ms_teams","action_handler":"sn_now_teams.MSTeamsMessageActionsApprovalHandler","table":"sysapproval_approver"},"type":"Action.Submit","title":"Approve"},{"data":{"sysId":"851b91501b907010951ac841604bcbaa","action_name":"reject","action_identifier":"com.snc.ms_teams","action_handler":"sn_now_teams.MSTeamsMessageActionsApprovalHandler","table":"sysapproval_approver"},"type":"Action.Submit","title":"Reject"}]}]}],"version":"1.2"}}]} The adaptive card is having hard limit with specific size which is restricting the app to populate all the information at MS teams end. The maximum allowed length of MS Teams message is only 28 KB, below are the supporting docs.https://docs.microsoft.com/en-us/microsoftteams/limits-specifications-teams#teams-and-channels https://github.com/microsoft/BotFramework-Services/issues/228