Power Automate - How to update a SharePoint choice column using REST API?

Опубликовано: 02 Октябрь 2024
на канале: abm abm
2,861
20

This video explains how to update a SharePoint choice column using REST API.

Uri

_api/web/lists/getbytitle('Students')/items({ID})

Headers

{
"accept": "application/json;odata=verbose",
"IF-MATCH": "*",
"X-HTTP-Method": "MERGE"
}

Body

{
"Sports":"Badminton"
}