I need to get the “CreatedAt” from json based on the ConversationID .
I tried this DeserializeJsonOutputGetConversationID(“data”).Where(Function (x) x (“attributes”)(“createdAt”).value(of string).Equals(ConversationID)).Select(Function (x) x (“createdAt”).value(of string)).toArray but this is not working JsonBody.txt (6.4 KB)
Thanks a lot! I had to match with conversation Id not with workItem Id .I have replaced it accordingly based on you answer
DeserializeJsonOutputGetConversationID(“data”).Where(Function (x) x (“relationships”)(“resource”)(“data”)(“id”).value(Of String).Equals(ConversationID)).Select(Function (x) x (“attributes”)(“createdAt”).value(Of String)).toArray