Power Automate - Update SharePoint Hyperlink
14.06.2021
Standartním způsobem nelze pomocí Power Automate aktualizovat na SharePointu pole typu Hyperlink. Je potřeba použít metodu "Send an HTTP request to SharePoint / Poslat požadavek HTTP do SharePointu".
Postup
1) Přidat do definice krok

2) Vložit JSON záhlaví
{
"Content-Type": "application/json;odata=verbose",
"X-HTTP-Method": "MERGE",
"IF-MATCH": "*"
}
3) Vložit JSON text
{
"__metadata": {
"type": "SP.Data.KancelarListItem"
},
"Informace_x0020_o_x0020_stavu": {
"Description": "Stav",
"Url": "https://MUJWEB.sharepoint.com/.....AllItems.aspx?FilterField1=Kancelar&FilterValue1=MOJEHODNOTA&FilterType1=Text"
}
}
#PowerAutomate, #SharePoint