I am trying to create a flow that uses the 'send http request to SharePoint' step to create an event on the Events calendar for a SharePoint site. I need to include a hyperlink in the Description property of the event that is created. Below is my json. Can someone point me in the right direction for the url portion?
{
"__metadata": {
"type": "SP.Data.EventsItem"
},
"fAllDayEvent": "false",
"EventDate": "@{body('Convert_time_-_Start')}",
"EndDate": "@{body('Convert_time_-_End')}",
"Title": "Test Event from Flow: HH",
"Category": "Meeting",
"Description": "<a href=\"@{outputs('Compose')}\"</a>"
}