Hi, I want to add a choice option to a sharepoint list multichoice field. I want to do so using Power Automate, making an HTTP request to Sharepoint. As I want to modify an existing field, I use a PUT request, but the same issue persists with POST.
My request is structured as follows
Uri: _api/web/lists/getbytitle(<List>)/fields/getbyinternalnameortitle('Testspalte')
(This works correctly, GET is successful and delivers all metadata)
Headers: Content-Type, accept = application/json;odata=verbose
If-Match = *
Body:
{
"__metadata": { "type": "SP.FieldMultiChoice" },
"Choices": {
"__metadata": {
"type": "Collection(Edm.String)"
},
"results": [
"Choice 1",
"Choice 2",
"Choice 3",
"Choice 4" (so the new choice)
]
}
}
When running this request, it runs for 11 minutes and then times out. If I run a simple GET request for the field, I get all relevant metadata. I have already run the flow with a system admin account, which gives the same issue. I've tried the same logic on a "normal", non-multichoice field, but still the same issue.
What can I do?