ContributionsMost RecentMost LikesSolutionsRe: TestComplete integration with TestRail Hello I am using this code to try out TestRail integration myself, however I'm having difficulties handling the object returned from TestRail. Currently the only way I am able to retrieve data is using the methods you described: var caseId = jobject.Item('case_id').Value_2.m_value; var runId = jobject.Item('run_id').Value_2.m_value; Any way I try to read the data or keys outside of these two lines, I get an empty string. so a few questions: 1) What type of object is this? (I originally thought JSON but I am unable to use JSON properties to convert to javascript object) 2) Where does "Value_2.m_value" come from? 3) How can I get the keys for 'Item(<key>)' for all items of this object? Thank you! Re: TestComplete integration with TestRail Hello , I am trying to implement the TestRail API in TestComplete as well. Can you share how you compiled the TestRail dotnet project with JSON?