Hi
@Alex Duff,
The Microsoft Graph API Reference pages are a great place to look for details of what the JSON payloads should look like. As an example, the
Update ListItem page states that the body of the request should contain a
FieldValueSet definition. The FieldValueSet is based on the column definitions of the List/ListItem in question. In their example, they show the following JSON payload:
{
"Author": "Brad Cleaver",
"AuthorLookupId": "13",
"Name": "Kangaroos and Wallabies: A Deep Dive",
"Color": "Red",
"Quantity": 350,
}
This would be tied to a List/ListItem with columns
Author,
AuthorLookupId,
Name,
Color, and
Quantity.
So, in your environment, what's the name of the column that will contain the commentary?
Cheers,
Eric