I have the following JSON payload.
The challenge is to fetch the name value and the corresponding root node number (3925 or 3932) since this node is unnamed.
I am using C#
"3925": {
"totalExecutions": 2,
"endDate": "",
"description": "",
"totalExecuted": 2,
"started": "",
"versionName": "Custom Pipes Development",
"expand": "executionSummaries",
"projectKey": "WUSDV007",
"versionId": 22361,
"environment": "",
"totalCycleExecutions": 2,
"totalDefects": 0,
"build": "",
"createdBy": "mghosh",
"ended": "",
"name": "SetMaxFutureDateFromCustomerField_Mobile",
"totalFolders": 0,
"modifiedBy": "mghosh",
"projectId": 17101,
"createdByDisplay": "Mayukh Ghosh",
"startDate": "",
}
}
"3932": {
"totalExecutions": 2,
"endDate": "",
"description": "",
"totalExecuted": 2,
"started": "",
"versionName": "Custom Pipes Development",
"expand": "executionSummaries",
"projectKey": "WUSDV007",
"versionId": 22361,
"environment": "",
"totalCycleExecutions": 2,
"totalDefects": 0,
"build": "",
"createdBy": "nkonda",
"ended": "",
"name": "WUSDV007-29779-Fee Validation",
"totalFolders": 0,
"modifiedBy": "nkonda",
"projectId": 17101,
"createdByDisplay": "Naveen Kumar Konda",
"startDate": "",
}
Any suggestions are highly appreciated.