Set SharePoint group to people picker column in powerautomate using RestApi

Divya Guggilam 21 Reputation points
2021-10-11T14:00:27.14+00:00

Actually while updating a user mail in people picker column. We use as the following:

"FieldValue":"[{'Key':'i:0#.f|membership|xxx@keyman .com'}]"

In the same way I would like to know, how to update a Sharepoint group in people picker column from a SharePoint list using power automate using rest api.

Can anyone help me out of this?

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
35,948 questions
0 comments No comments
{count} votes

Accepted answer
  1. Allen Xu_MSFT 13,776 Reputation points
    2021-10-12T08:06:14.073+00:00

    Hi @DivyaGuggilam-2250 ,

    To update a people field (single or multiple) in Power Automate, you can use Send an HTTP request to SharePoint REST API by setting field with user or group Id.

    Considering the field name is Editor, the format for user field value:

    Single-valued user field: 'EditorId' : 1

    Multi-valued user field: 'EditorId' : { 'results': [1, 2, 3] }

    Where 1, 2, 3 are ID of users/groups.

    For example:
    139831-image.png

    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.


    If an Answer is helpful, please click "Accept Answer" and upvote it.
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


1 additional answer

Sort by: Most helpful
  1. Divya Guggilam 21 Reputation points
    2021-10-19T10:15:10.96+00:00

    Yeah, I got the solution from this reference link

    https://www.linkedin.com/pulse/list-items-system-update-options-sharepoint-online-andrew-koltyakov

    We have to use the following syntax:

    "FieldValue":"[{'Key':'LoginName/GroupName'}]"

    0 comments No comments