As it's running against a specific item in your list you can add a flow button to trigger the flow. Add a new column in your SharePoint list and format it with the following JSON code:
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/v2/column-formatting.schema.json",
"elmType": "button",
"txtContent": "Send for Approval",
"customRowAction": {
"action": "executeFlow",
"actionParams": "{\"id\": \"52b76de4-f775-456c-87ad-61c46714990a\"}"
}
}
Replace the code in red with the ID of your flow. Replace the text in blue with the text you want on the button.


Rob
Los Gallardos
If I've answered your question or solved your problem, please mark this question as answered. This helps others who have the same question find a solution quickly via the forum search. If you liked my response, please consider giving it a thumbs up. Thanks.