Re: Get Rows from SQL and Add to Details Markdown of Approval ACtion
Hi @schuess3 ,
Do you want to add a link in the approval details?
From the doc Use Markdown in Microsoft Flow approval requests # links, we know that HTTP and HTTPS URLs are automatically formatted as links.
I have set up the flow likes below, and the URL works properly.
Initialize an array variable named as Test.
Get rows from the SQL table, a column named “URL” included in the table.
Add Apply to each, and action Append to array within the loop, configure the value field likes below:
[ColumnName](URL)
Under Apply to each add Compose action with the following link:
join(variables('Test'),';')
Add Start and wait for an approval action, select Compose output for the Details field.
An image for your reference.


Best regards,
Mabel