Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

microsoft graph api: patch nested structure

To update a 'simple' field item in sharepoint we can patch using the graph api: https://graph.microsoft.com/v1.0/sites/{site-id}/lists/{list-id}/items/{item-id}/fields using

{ "td_documentLookupId":"22" }

But how to perform an update if the required structure is a nested json`enter code here:

{         
   "td_documentLookupId":"22",
   "td_object":{
                "LookupId":7,
                "LookupValue":"title"
                }
}

This returns an invalid request. Any help is appreciated!

question from:https://stackoverflow.com/questions/65885995/microsoft-graph-api-patch-nested-structure

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I found the following to work for the above case, using PATCH protocol:

                         {         
                            "td_documentLookupId":"22",
                            "[email protected]": 'Collection(Edm.Int32)',
                            "td_objectLookupId": [7]                        
                          } 

td_objectLookupId is a multiselect list. As per above it can retrieve a list of values e.g. [7,8,9]


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...