Update Image Type Column in SharePoint from Power Automate/Flow

Опубликовано: 28 Сентябрь 2024
на канале: Aniruddha Biswas
9,621
93

________________________________________________________________________________________
How to upload image or signature from Power Apps to SharePoint:    • PowerApps Basics -3: Multiform Submit...  
________________________________________________________________________________________
To Update Picture or Hyperlink Column in SharePoint from PowerApps please check this video:    • How to do in Power Apps - 1: Update P...  
________________________________________________________________________________________
Image Type Column in SharePoint is a readonly column in Power Apps. Here is a workaround how you can update Image Column through Flow/Power Automate using "Send an HTTP request to SharePoint" Action.

Few help code used in the video:

REST API: _api/web/lists/getbytitle('Contractor Details')/items(@{triggerOutputs()?['body/ID']})/ValidateUpdateListItem

ServerRelativeURL: decodeUriComponent(decodeUriComponent(items('Apply_to_each')?['Id']))

Body JSON:
{
"formValues":[
{
'FieldName':'NewImageColumn',
'FieldValue':''
}
]
}