Re: Customize display name of "link to item" in sharepoint column
Hi @Nuriel
You could achieve this by using "Send an http request to SharePoint" action. Pls refer the sample flow mentioned below.
In this example, I have used a SharePoint list 'Action Tracker' with 'hyperlinkCol' as a hyperlink column type.

Site Address: <<SharePoint site collection URL>>
Method: POST
Uri: _api/web/lists/getbytitle('<list display name>')/items(<item id>)
Headers:
Key |
Value |
Content-Type |
application/json;odata=verbose |
X-HTTP-Method |
MERGE |
IF-MATCH |
* |
Body:
{
"__metadata": {
"type": "SP.Data.Action_x0020_TrackerListItem"
},
"hyperlinkCol": {
"Description": "Link",
"Url": "https://www.microsoft.com"
}
}
In the above JSON code, 'Action_x0020_Tracker' is the display name of the list. The white space between name is represented by '_x0020_', if there is no space then it is not needed. In description, pass the link title and Url contains the actual link.
If this helps & solves your problem, please remember to give a 👍 and accept my solution as it will help others in the future.
Thanks