Hello everybody,
Before going into the details of my issue, I have looked into other posts on this community but I could not find the answer there.
I have a quite simple flow.
When a new news post has been created on a specific SharePoint site, the flow should trigger.
In the end, the flow should post a message into a Teams channel and it should mention all the team members for visibility.
How I do that?
It triggers when a new item has been created.

A trigger condition is specified to only start when the PromotedState value equals 2.
@equals(triggerBody()?['PromotedState'],2)
So far so good. The trigger works fine.
Next step, retrieving the Microsoft 365 group members of the team where I will post a message, and putting these members in a string type variable:

Still working as expected.
Last step, posting the message.

This steps results in an error.
Error details
Unexpected character encountered while parsing value: E. Path '', line 0, position 0.
at Newtonsoft.Json.JsonTextReader.ParseValue()
at Newtonsoft.Json.Linq.JArray.Load(JsonReader reader, JsonLoadSettings settings)
at Newtonsoft.Json.Linq.JArray.Parse(String json, JsonLoadSettings settings)
Please find the body of the Post a Message (Teams) action card below.
I checked the body of the message and put it in jsonlint, no validation errors.
I hope that someone could help me understand what's going on here!
Thanks a lot.
Joost
Body
{
"recipient": {
"groupId": "0481xxxx-xxxx-xxxx-xxxx-xxxx3a7d055a",
"channelId": "19:xxxxxxxxxxxxxxxxxxxxf4a6d944xxxx@thread.tacv2"
},
"messageBody": "<p>\n<b>Er staat directienieuws voor je klaar!</b><br>\n<a href=\"https://orgname.sharepoint.com/sites/Directienieuws/SitePages/Directienieuws-week-6---2021.aspx\">Klik hier</a> om het nieuwsbericht te openen.</p>\n<at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at><at>username@org.nl</at>"
}