Need help how to get the key element name instead of the value.
"assignments": {
"5f415230-12c0-49f1-8d25-00dcd9ad0e7e": {
"@odata.etag": "W/\"JzEtVGFzayAgQEBAQEBAQEBAQEBAQEBAWCc=\"",
"planId": "egP0I6R3EUi_rNCNluHHcGQAFZPl",
"bucketId": "h1d9_CXtWk2Y5x0JKthk9GQAOcO0",
"title": "INC3673457",
"orderHint": "8585752933743133091",
"assigneePriority": "",
"percentComplete": 50,
"createdDateTime": "2021-07-15T01:45:11.1642716Z",
"dueDateTime": "2021-07-16T00:00:00Z",
"hasDescription": true,
"previewType": "description",
"referenceCount": 1,
"checklistItemCount": 0,
"activeChecklistItemCount": 0,
"conversationThreadId": "AAQkAGMwNTU4NmNjLWMzZmEtNGM3OC04YWQ3LWZhMjJkZTRlYWYzZQMkABAAX2y12f5zi02PaRDNu62PHxAAX2y12f5zi02PaRDNu62PHw==",
"id": "UhKUhFVnxkW1cs5805Gw-mQAKJnk",
"createdBy": {
"user": {
"id": "49510ecd-5f4d-4796-bbcd-d47575638954"
}
},
"appliedCategories": {
"category20": true
},
"assignments": {
"5f415230-12c0-49f1-8d25-00dcd9ad0e7e": {
"@odata.type": "#microsoft.graph.plannerAssignment",
"assignedDateTime": "2021-07-15T01:45:11.1642716Z",
"orderHint": "8585752934344383136Pn",
"assignedBy": {
"user": {
"displayName": null,
"id": "49510ecd-5f4d-4796-bbcd-d47575638954"
}
}
}
},
Basically, i have a list of task planners assigned to multiple users. And i want to build a flow which will consolidate all tasks assigned per owner which having expired or null Due date and send a chat to follow-up. Planning to create a html table listing those tasks assigned per owner.
| Title | Description | Due Date | Status |
| 2314234141 | Creating a table | 19-Jul-2021 | Not Started |
Thanks in advance for all your help!