-
I am writing an Azure Function App using Graph 5.55. When I get the task details, the checklist are in a collection of Microsoft.Kiota.Abstractions.Serialization.UntypedObjects. Is it possible to read the properties in that collection? I was truly expecting the same JSON responce as showed here: https://learn.microsoft.com/en-us/graph/api/plannertaskdetails-get?view=graph-rest-1.0&tabs=csharp |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Thanks for raising this @mejohnm If you are interested in the raw json string, you can simply use the serilization helpers to get the string value. var stringValue = KiotaJsonSerializer.SerializeAsString(objectValue); |
Beta Was this translation helpful? Give feedback.
Sure, assuming dotnet
Let us know if you have further questions