Hi!
I can create an item in sharepoint event list without any problem using Send HTTP to Sharepoint action.
Now, I would like to add Participants to it (event list shows member´s items) and it is now working:
I can retrieve the user from sharepoint that needs to be added:
Best Regards,
Marcos
Solved! Go to Solution.
Hi @machammarj,
Just to double check. Does that participants column allow multiple values? Based on the name of the column I assume it does.
You can use the loginname (with the claim) of your first HTTP request and use that to update the Participants field value via the validateUpdateListItem method (after you have created the item first)
@tom_riha has recently written a good blogpost about this:
https://tomriha.com/how-to-easily-update-sharepoint-people-picker-column-in-power-automate/
Below is an example of that approach.
Replace Participants0 by the internal name of your Participants field in the event list
{
"formValues":[
{
"FieldName": "Participants0",
"FieldValue": "[{'Key':'@{outputs('Enviar_uma_solicitação_HTTP_ao_SharePoint_2')?['body']['d']['LoginName']}'}]"
}
]
}
Hi @machammarj,
Just to double check. Does that participants column allow multiple values? Based on the name of the column I assume it does.
You can use the loginname (with the claim) of your first HTTP request and use that to update the Participants field value via the validateUpdateListItem method (after you have created the item first)
@tom_riha has recently written a good blogpost about this:
https://tomriha.com/how-to-easily-update-sharepoint-people-picker-column-in-power-automate/
Below is an example of that approach.
Replace Participants0 by the internal name of your Participants field in the event list
{
"formValues":[
{
"FieldName": "Participants0",
"FieldValue": "[{'Key':'@{outputs('Enviar_uma_solicitação_HTTP_ao_SharePoint_2')?['body']['d']['LoginName']}'}]"
}
]
}
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
30 | |
29 | |
29 | |
20 | |
11 |