Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Automate - Building Flows
Answered

SharePoint List Column-Person or Group Fields Using REST API with Power Automate for Multiple Value

(0) ShareShare
ReportReport
Posted on by 21

Hi, need a code to provide multiple values to a Person or Group column in SharePoint via Power Automate.

as of now I'm able to add only one User in the APPROVER Column.http.PNG

I need a code for Allow Multiple Values for a Person or Group Column dynamically.

  • Verified answer
    Expiscornovus Profile Picture
    32,131 Most Valuable Professional on at
    Re: SharePoint List Column-Person or Group Fields Using REST API with Power Automate for Multiple Value

    Hi @Ahemed,

     

    You could use the CreateFieldasXml method for this. In the SchemaXml you can use the Type UserMulti and set the Mult property to True.

     

    Below is an example

     

    Uri

    _api/web/lists/getByTitle('@{variables('ListName')}')/fields/CreateFieldAsXml

     

    Headers

    {
     "Accept": "application/json;odata=verbose",
     "Content-Type": "application/json;odata=verbose;charset=utf-8"
    }

     

    Body

    {"parameters":{"__metadata":{"type":"SP.XmlSchemaFieldCreationInformation"},"SchemaXml":"<Field DisplayName='Approver' Format='Dropdown' IsModern='TRUE' List='UserInfo' Mult='TRUE' Name='Approver' Title='Approver' Type='UserMulti' UserSelectionMode='0' UserSelectionScope='0'></Field>","Options":12}}

     

    createfieldasxml_method.png

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 497 Super User 2025 Season 1

#2
David_MA Profile Picture

David_MA 436 Super User 2025 Season 1

#3
Riyaz_riz11 Profile Picture

Riyaz_riz11 244 Super User 2025 Season 1